goingnative
goingnative copied to clipboard
A NodeSchool style workshopper for learning how to write native Node.js addons
I get this error in part two but didn't find any difference between my code and solution ```bash > goingnative verify myaddon Could not verify: Error: EISDIR: illegal operation on...
This is concerned with #99. My modification 1. add path.join, otherwise `copy` function can not properly copy the cc file to the temporary folder 2. replace the single quotation marks...
when installed globally by command `sudo npm install goingnative -g` **It gives error** ``` node postinstall.js internal/fs/utils.js:269 throw err; ^ Error: EACCES: permission denied, open '/usr/local/lib/node_modules/goingnative/exercises/am_i_ready/problem.md' at Object.openSync (fs.js:462:3) at...
Like in https://travis-ci.org/github/workshopper/goingnative/jobs/707075195 We have failing the `offloading_the_work` some times. I think maybe could be that travis isn't waiting for the async worker to complete; but need to debug
I'm seeing `Visit [http://](http://) to download a new version or use your local package manager to upgrade.` in the first exercise. Even though in the sources, I can see a...
Using git-bash on Windows, running `goingnative` produces the following output: ``` $ goingnative C:\Users\Vidminas\AppData\Roaming\npm\node_modules\goingnative\node_modules\terinal-menu\index.js:61 process.stdin.setRawMode(true); ^ TypeError: process.stdin.setRawMode is not a function at new Menu (C:\Users\Vidminas\AppData\Roaming\npm\node_modules\goingnativenode_modules\terminal-menu\index.js:61:19) at module.exports (C:\Users\Vidminas\AppData\Roaming\npm\node_modules\goingative\node_modules\terminal-menu\index.js:8:12) at...
I should be able to use VS 2015 if that's what I have installed. I can pull this code to a local file and work on getting that to work,...
✗ Could not properly compile test addon, did not load binding ✗ /usr/local/lib/node_modules/goingnative/exercises/am_i_ready/child.js:17 ✗ if (binding.test !== 'OK') { ✗ ^ ✗ TypeError: Cannot read property 'test' of undefined ✗...
### Issue: When trying to run: ``` goingnative verify ``` On a Windows 8.1 (64bit) machine the program gives the following error: ``` Could not properly compile test addon, error...
I'm working on the final tutorial, "Offloading The Work". My solution fails if my delay is invoked as follows with provided code: ``` addon.delay(process.argv[2], function() { clearInterval(interval) console.log('Done!') }) ```...