A lot of packages have one or more executable files that they’d like to install into the PATH. npm makes this pretty easy (in fact, it uses this feature to install the “npm” executable.)

To use this, supply a bin field in your package.json which is a map of command name to local file name. On install, npm will symlink that file into prefix/bin for global installs, or ./node_modules/.bin/ for local installs.

[https://docs.npmjs.com/files/package.json#bin](https://docs.npmjs.com/files/package.json#bin)
This commit is contained in:
Pratik Chowdhury 2020-09-01 10:15:16 +05:30 committed by GitHub
parent a7fb3ac894
commit 961d72670b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -3,6 +3,7 @@
"version": "0.0.3",
"description": "import a medium URL and convert it to markdown",
"main": "index.js",
"bin": "./index.js",
"scripts": {
"convert": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",