建立 NPM 套件 - 一步一步
Hello, developer community!
Today, I’m going to walk you through the steps to set up a JavaScript library from scratch, including configuring commit linting, Husky, and semantic release for smooth development and release processes. Let’s dive into it!
Demo
- Create a new project directory:
mkdir new-project cd new-project
- Initialize a Git repository:
git init
- Create a .gitignore file to exclude node_modules:
echo "node_modules" > .gitignore
- Initialize a new Node.js project:
npm init -y
Make sure to add "type": "module" to your package.json to enable ES6 modules.
- Set up commitlint to enforce consistent commit messages:
npm install --save-dev @commitlint/{cli,config-conventional} echo "export default { extends: ['@commitlint/config-conventional'] };" > commitlint.config.js
- Configure husky to ensure commits follow commitlint rules:
npm install --save-dev husky npx husky init rm .husky/pre-commit echo "npx --no -- commitlint --edit \$1" > .husky/commit-msg
- Verify commitlint configuration:
npx commitlint --from HEAD~1 --to HEAD --verbose
- Perform some test commits to check the configuration:
git add . git commit -m "foo: this will fail" # This commit should fail git commit -m "chore: this will pass" # This commit should pass
- Install and configure semantic-release for automated versioning and releases:
npm install --save-dev semantic-release npm install @semantic-release/git @semantic-release/changelog -D
Create the necessary directories and file for semantic-release:
mkdir .github mkdir .github/workflows/ touch .github/workflows/release.yml
-
Tag the latest commit and push it to the repository:
git log # Copy the GUID of the latest commit git tag v0.0.0 <COMMIT_GUID> git tag --contains <COMMIT_GUID> git push origin tag v0.0.0
登入後複製 Create a new NPM token and add it to your repository secrets.
-
Install and configure Commitizen for consistent commit messages:
npm install commitizen -g commitizen init cz-conventional-changelog --save-dev --save-exact
登入後複製 -
Install additional development tools like TypeScript, Jest, and Rollup:
npm install --save-dev typescript @types/node jest ts-jest @types/jest npm install --save-dev rollup @rollup/plugin-typescript @rollup/plugin-terser npm install --save-dev rollup-plugin-dts
登入後複製Create the Rollup configuration file (rollup.config.js):
import terser from '@rollup/plugin-terser'; import typescript from '@rollup/plugin-typescript'; import dts from 'rollup-plugin-dts'; export default [ { input: 'src/index.ts', plugins: [ typescript({ tsconfig: './tsconfig.json', declaration: false, declarationDir: null, }), terser() ], output: [ { file: 'dist/index.mjs', format: 'esm', }, { file: 'dist/index.cjs', format: 'cjs', exports: 'named', }, ] }, { input: 'src/index.ts', plugins: [dts()], output: { file: 'dist/index.d.ts', format: 'es', }, } ];
登入後複製
And that’s it! You now have a fully configured project ready for developing and publishing your JavaScript library. If you have any questions or need further assistance, feel free to ask. Happy coding! ?
Best regards!
以上是建立 NPM 套件 - 一步一步的詳細內容。更多資訊請關注PHP中文網其他相關文章!

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

JavaScript是現代Web開發的基石,它的主要功能包括事件驅動編程、動態內容生成和異步編程。 1)事件驅動編程允許網頁根據用戶操作動態變化。 2)動態內容生成使得頁面內容可以根據條件調整。 3)異步編程確保用戶界面不被阻塞。 JavaScript廣泛應用於網頁交互、單頁面應用和服務器端開發,極大地提升了用戶體驗和跨平台開發的靈活性。

Python和JavaScript開發者的薪資沒有絕對的高低,具體取決於技能和行業需求。 1.Python在數據科學和機器學習領域可能薪資更高。 2.JavaScript在前端和全棧開發中需求大,薪資也可觀。 3.影響因素包括經驗、地理位置、公司規模和特定技能。

實現視差滾動和元素動畫效果的探討本文將探討如何實現類似資生堂官網(https://www.shiseido.co.jp/sb/wonderland/)中�...

JavaScript的最新趨勢包括TypeScript的崛起、現代框架和庫的流行以及WebAssembly的應用。未來前景涵蓋更強大的類型系統、服務器端JavaScript的發展、人工智能和機器學習的擴展以及物聯網和邊緣計算的潛力。

如何在JavaScript中將具有相同ID的數組元素合併到一個對像中?在處理數據時,我們常常會遇到需要將具有相同ID�...

不同JavaScript引擎在解析和執行JavaScript代碼時,效果會有所不同,因為每個引擎的實現原理和優化策略各有差異。 1.詞法分析:將源碼轉換為詞法單元。 2.語法分析:生成抽象語法樹。 3.優化和編譯:通過JIT編譯器生成機器碼。 4.執行:運行機器碼。 V8引擎通過即時編譯和隱藏類優化,SpiderMonkey使用類型推斷系統,導致在相同代碼上的性能表現不同。

探索前端中類似VSCode的面板拖拽調整功能的實現在前端開發中,如何實現類似於VSCode...
