npxample
v1.0.0
Published
An example npm package for npx
Downloads
6
Readme
npxample
An example npx package
Making your own npx package with npxample
(with vscode)
git clone https://github.com/xamyl/npxample.git
cd npxampleedit package.json to your liking
example:
{
"name": "my-cool-npx-project",
"version": "1.0.0",
"description": "description",
"main": "index.js",
"scripts": {},
"bin": {
"example": "./index.js"
},
"dependencies": {
"fs-extra": "^10.1.0",
"inquirer": "^8.2.6"
},
"author": "Your Name",
"license": "ISC"
}
If name specified in the bin section is not taken, once published, the command will be
npx example (replace example with whatever you put in the bin section)
See it in action
npx npxample