Pieter Jan De Smedt
Pieter Jan De Smedt
Perhaps a default ignore list [like nodemon uses](https://github.com/remy/nodemon#ignoring-files) would be useful: > Note that by default, nodemon will ignore the `.git`, `node_modules`, `bower_components` and `.sass-cache` directories and _add_ your ignored...
Having the same error after installing aglio globally. ``` module.js:457 throw err; ^ Error: Cannot find module 'protagonist' at Function.Module._resolveFilename (module.js:455:15) at Function.Module._load (module.js:403:25) at Module.require (module.js:483:17) at require (internal/module.js:20:19)...
Rebuilding in the directory where aglio is installed did the trick. In my case ``` cd /usr/local/lib/node_modules/aglio/ npm i npm rebuild ```
Any progress on this?
Related to #25, but I would like this even better as it gives more control than volume only _and_ hooks into the hardware buttons. Attached are screenshots of the Music...
Any news on this, @PitBeast ?
For the moment you can just install Leaflet.label from GitHub instead of the npm repository with ``` sh npm i --save Leaflet/Leaflet.label ``` then in your javascript ``` javascript require('leaflet.label');...
I'm struggling with the same problem. I have a webserver that is probably difficult-to-secure, so I want to run a distributing-only wallet on it. My API would contain the full...
Found it, I think. ```js import bip32 from 'bip32'; import bip39 from 'bip39'; import bitcoin from 'bitcoinjs-lib'; import assert from 'assert'; const testnet = bitcoin.networks.testnet; function getAddress(node, network) { return...