Skip to content

Commit 084bef2

Browse files
committed
Support for newer Babel and work-around the following Node 7.x bug:
nodejs/node#11257 Instead of piping the output to node, create a temporary file.
1 parent acde391 commit 084bef2

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
ndebug.js
2+
ndebug_compiled.js
23
node_modules

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Purpose
44
-------
55

6+
This fork works around the bug where [redirecting Node to a pipe breaks require](https://github.com/nodejs/node/issues/11257). It is also updated for Node v7.10, with the newer syntax.
7+
68
This is a repo and workflow for a simple ES6/Node.js/Lodash scratchpad for Vim. I got tired of writing bits of code in the
79
web inspector, since it's really difficult to go back and edit code. I wanted a quick little thing I could open up
810
and immediately start writing some ES6 code that also has Lodash available.
@@ -27,3 +29,13 @@ buffer remains until I close it, and it'll update each time I save the scratchpa
2729
scratchpad buffer:
2830

2931
![http://i.nick.sg/image/2i2N2E1B0j25/gif.gif](http://i.nick.sg/image/2i2N2E1B0j25/gif.gif)
32+
33+
Alternatively, I use this setup, which lets me write :_ in vim and hit enter:
34+
35+
```
36+
au BufWritePost ndebug.js execute "normal! :Clam cd ~/software/git/ndebug; npm run build; cd -\<cr>"
37+
function! Ndebug()
38+
:edit ~/software/git/ndebug/ndebug.js
39+
endfunction
40+
cnoremap _<CR> <CR>:call Ndebug()<CR><CR>
41+
```

package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
"description": "An ES6/Node.js scratchpad for Vim with lodash available.",
55
"main": "index.js",
66
"scripts": {
7-
"build": "babel ndebug.js|node",
7+
"build": "babel ndebug.js > ndebug_compiled.js; node ndebug_compiled.js",
88
"test": "echo \"Error: no test specified\" && exit 1"
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "git+https://github.com/nicksergeant/ndebug.git"
12+
"url": "git+https://github.com/antun/ndebug.git"
1313
},
1414
"author": "Nick Sergeant",
1515
"license": "MIT",
1616
"bugs": {
17-
"url": "https://github.com/nicksergeant/ndebug/issues"
17+
"url": "https://github.com/antun/ndebug/issues"
1818
},
19-
"homepage": "https://github.com/nicksergeant/ndebug#readme",
19+
"homepage": "https://github.com/antun/ndebug#readme",
2020
"dependencies": {
21-
"babel": "^5.8.23",
22-
"lodash": "^3.10.1"
21+
"babel-cli": "^6.24.1",
22+
"lodash": "^4.17.4"
2323
}
2424
}

0 commit comments

Comments
 (0)