使用 npm 建立 CLI 指令

建立專案

建立專案。

1
2
mkdir create-hello-world
cd create-hello-world

新增 package.json 檔。

1
2
3
4
5
6
7
{
"name": "create-hello-world",
"version": "1.0.0",
"bin": {
"hello-world": "bin/index.js"
}
}

新增 bin/index.js 檔。

1
2
3
#! /usr/bin/env node

console.log('Hello, World!');

使用

安裝依賴套件。

1
npm i -g

npx

使用 npx 命令執行。

1
npx create-hello-world

輸出如下:

1
Hello, World!

npm

使用 npm init 命令執行。

1
npm init hello-world

輸出如下:

1
Hello, World!

參考資料