Uses node.js, node-onep, and browserify to work as a test device making calls to OneP as a Chrome extension.
popup.html
is the front-end html for the extensionmain.js
is the front-end JavaScript where you can write your API calls from- the extension actually uses
bundle.js
as the front-end JavaScript, which can be generated withbrowserify main.js -o bundle.js
- the version of
request
that node-onep currently uses is incompatible with browserify. You must update the version in/node_modules/onep/package.json
to at least ~2.62.0 and reinstall