nat-network-stream
v0.1.2
Published
Nat.js module: Stream (fetch)
Downloads
3
Maintainers
Readme
nat-network-stream
Installation
weexpack plugin add nat-network-stream
npm install natjs --save
Usage
Use in weex file (.we)
<script>
import 'Nat' from 'natjs'
Nat.fetch('http://domain.com/api', {
method: 'GET',
type: 'json'
}, (err, ret) => {
console.log(ret)
})
</script>
See the Nat Documentation for more details.