Last active
January 28, 2021 18:48
-
-
Save i-have-no-name/b67b1509360d4166ff68d9981ada72be to your computer and use it in GitHub Desktop.
npx-node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const fs = require('fs'); | |
console.log('*'.repeat(20)); | |
console.log(fs.readdirSync('./app')); | |
console.log(process.env); | |
console.log('*'.repeat(20)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "run-js-with-npx-from-gist", | |
"version": "1.0.0", | |
"bin": "./index.js" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment