https://github.com/dthree/parsebox-node-client
Node client for accessing parsebox.io as an API.
https://github.com/dthree/parsebox-node-client
Last synced: 10 months ago
JSON representation
Node client for accessing parsebox.io as an API.
- Host: GitHub
- URL: https://github.com/dthree/parsebox-node-client
- Owner: dthree
- Created: 2021-05-20T16:19:30.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-20T16:21:43.000Z (about 5 years ago)
- Last Synced: 2025-08-09T12:59:20.755Z (11 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# ParseBox Node.js Client
A client library for programmatically accessing [parsebox.io](https://parsebox.io) Boxes as an API.
```
import parsebox from "parsebox";
(async () => {
const helloBox = parsebox.box('dthree/uuqajgpvwavr');
const result = await helloBox.exec('fellow coder');
console.log(result);
// { success: true, data: "Hello fellow coder!" }
})()
```
[Example Box](https://parsebox.io/dthree/uuqajgpvwavr)
## What's ParseBox?
All we know is that it's coming soon!
## License
MIT © [DC](https://github.com/dthree)