Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 492 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 492 Bytes

nat-recorder

Installation

weexpack plugin add nat-recorder
npm install natjs --save

Usage

Use in weex project (.vue/.we)

<script>
import Nat from 'natjs'

Nat.recorder.start()

Nat.recorder.pause()

Nat.recorder.stop((err, ret) => {
    console.log(ret)
})

</script>

See the Nat Documentation for more details.