Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sergioisidoro/remarkable-js
https://github.com/sergioisidoro/remarkable-js
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sergioisidoro/remarkable-js
- Owner: sergioisidoro
- Created: 2019-10-19T22:06:50.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-19T22:21:41.000Z (about 5 years ago)
- Last Synced: 2024-10-04T20:41:06.502Z (3 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WORK IN PROGRESS
#### Btw: If you want to help me build a browser extension to send simplified PDF versions of webpages, please get in touch.
### Note: Requires JQuery
```
// Not auth
client = remarkableClient(null)var otp = "xxxxxxx"
vat device_name = "desktop-windows"// Register device
register_promise = client.register(otp, device_name)register_promise.done((res) => {
client.set_token(res)
});// CREATE ZIP FILE WITH PDF HERE, AND CREATE DOC
client.create_doc(content)
// Starting client with pre-registered token:
client = remarkableClient(remarkable_token)
```