Skip to content

Instantly share code, notes, and snippets.

@mateusvelleda
Last active July 10, 2020 23:50
Show Gist options
  • Save mateusvelleda/a6b27a93dbc1cb9c8170e39e4c1e699e to your computer and use it in GitHub Desktop.
Save mateusvelleda/a6b27a93dbc1cb9c8170e39e4c1e699e to your computer and use it in GitHub Desktop.
Testing NPX
{
"name": "test-npx",
"private": false,
"version": "0.0.1",
"bin": "./testing-npx.js"
}
#!/usr/bin/env node
const { exec } = require('child_process');
exec('echo "$(whoami), vamo caí pra Augusta?"', (err, stdout) => console.log(stdout));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment