建立專案
建立專案。
1 | mkdir create-hello-world |
新增 package.json
檔。
1 | { |
新增 bin/index.js
檔。
1 |
|
使用
安裝依賴套件。
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! |
建立專案。
1 | mkdir create-hello-world |
新增 package.json
檔。
1 | { |
新增 bin/index.js
檔。
1 |
|
安裝依賴套件。
1 | npm i -g |
使用 npx
命令執行。
1 | npx create-hello-world |
輸出如下:
1 | Hello, World! |
使用 npm init
命令執行。
1 | npm init hello-world |
輸出如下:
1 | Hello, World! |