亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 編程 > JavaScript > 正文

使用typescript開發angular模塊并發布npm包

2019-11-19 14:00:03
字體:
來源:轉載
供稿:網友

本文介紹了使用typescript開發angular模塊并發布npm包,分享給大家,具體如下:

創建模塊

初始化package.json文件

執行命名

npm init -y

會自動生成package.json文件如下,name默認為文件夾名稱

{ "name": "MZC-Ng-Api", "version": "1.0.0", "description": "", "main": "index.js", "scripts": {  "test": "echo /"Error: no test specified/" && exit 1" }, "keywords": [], "author": "", "license": "ISC"}

在此基礎上可以設置默認生成值

npm config set init-author-name "yiershan"       # 你的名稱npm config set init-author-email "511176294@qq.com" # 你的郵箱npm config set init-author-url "https://www.jianshu.com/u/8afb7e623b70" # 你的個人網頁npm config set init-license "MIT"          # 開源授權協議名npm config set init-version "0.0.1"             # 版本號

刪掉重新來一遍

{ "name": "MZC-Ng-Api", "version": "0.0.1", "description": "", "main": "index.js", "scripts": {  "test": "echo /"Error: no test specified/" && exit 1" }, "keywords": [], "author": "yiershan <511176294@qq.com> (https://www.jianshu.com/u/8afb7e623b70)", "license": "MIT"}

然后添加一個 README.md 文件

簡單介紹下項目

# MZC-Ng-Api這是一個npm包發布測試項目## License請查看 [MIT license](./LICENSE).

添加一個開源協議文件

做事情還是要做的有鼻子有眼的嘛。

MIT LicenseCopyright (c) 2017 MZC本項目為測試項目,完全免費。

添加源碼

創建一個src目錄并添加一個Index.ts文件

export class MzcNgApi{  private name: string;  constructor() {    this.name = "MzcNgApi";  }}

創建一個Index.ts文件

export * from './src/index'

使用typescript編譯

沒有安裝typescript就先安裝

npm i -g typescript

初始化tsconfig.json文件

tsc --init

自動生成文件,很全很強大,還有解釋

{ "compilerOptions": {  /* Basic Options */  "target": "es5",             /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */  "module": "commonjs",           /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */  // "lib": [],               /* Specify library files to be included in the compilation. */  // "allowJs": true,            /* Allow javascript files to be compiled. */  // "checkJs": true,            /* Report errors in .js files. */  // "jsx": "preserve",           /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */  //"declaration": true,          /* Generates corresponding '.d.ts' file. */  // "sourceMap": true,           /* Generates corresponding '.map' file. */  // "outFile": "./",            /* Concatenate and emit output to single file. */  // "outDir": "dist",            /* Redirect output structure to the directory. */  // "rootDir": "./",            /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */  // "removeComments": true,        /* Do not emit comments to output. */  // "noEmit": true,            /* Do not emit outputs. */  // "importHelpers": true,         /* Import emit helpers from 'tslib'. */  // "downlevelIteration": true,      /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */  // "isolatedModules": true,        /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */  /* Strict Type-Checking Options */  "strict": true,              /* Enable all strict type-checking options. */  // "noImplicitAny": true,         /* Raise error on expressions and declarations with an implied 'any' type. */  // "strictNullChecks": true,       /* Enable strict null checks. */  // "strictFunctionTypes": true,      /* Enable strict checking of function types. */  // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */  // "noImplicitThis": true,        /* Raise error on 'this' expressions with an implied 'any' type. */  // "alwaysStrict": true,         /* Parse in strict mode and emit "use strict" for each source file. */  /* Additional Checks */  // "noUnusedLocals": true,        /* Report errors on unused locals. */  // "noUnusedParameters": true,      /* Report errors on unused parameters. */  // "noImplicitReturns": true,       /* Report error when not all code paths in function return a value. */  // "noFallthroughCasesInSwitch": true,  /* Report errors for fallthrough cases in switch statement. */  /* Module Resolution Options */  // "moduleResolution": "node",      /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */  // "baseUrl": "./",            /* Base directory to resolve non-absolute module names. */  // "paths": {},              /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */  // "rootDirs": [],            /* List of root folders whose combined content represents the structure of the project at runtime. */  // "typeRoots": [],            /* List of folders to include type definitions from. */  // "types": [],              /* Type declaration files to be included in compilation. */  // "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */  "esModuleInterop": true          /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */  // "preserveSymlinks": true,       /* Do not resolve the real path of symlinks. */  /* Source Map Options */  // "sourceRoot": "./",          /* Specify the location where debugger should locate TypeScript files instead of source locations. */  // "mapRoot": "./",            /* Specify the location where debugger should locate map files instead of generated locations. */  // "inlineSourceMap": true,        /* Emit a single file with source maps instead of having a separate file. */  // "inlineSources": true,         /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */  /* Experimental Options */  // "experimentalDecorators": true,    /* Enables experimental support for ES7 decorators. */  // "emitDecoratorMetadata": true,     /* Enables experimental support for emitting type metadata for decorators. */ }}

編譯

tsc -p .

編譯成功會生成了js文件

發布

雖然什么都沒有,但是什么都有了。

修改package.json文件

{ "name": "mzc-ng-api", // 這個名字要小寫且不能重復,有大寫字母會報錯 "version": "1.0.2", "description": "個人博客系統,從后臺api取數據的angular封裝", "main": "index.js", "scripts": {  "test": "echo /"Error: no test specified/" && exit 1" }, "repository": {  "type": "git",  "url": "git+https://github.com/yiershan/MZC-Ng-Api.git" }, "keywords": [], "author": "yiershan <511176294@qq.com> (https://www.jianshu.com/u/8afb7e623b70)", "license": "MIT", "bugs": {  "url": "https://github.com/yiershan/MZC-Ng-Api/issues" }, "homepage": "https://github.com/yiershan/MZC-Ng-Api#readme"}

修正下載源

npm config set registry https://registry.npmjs.org/

登錄

npm login

如果沒有賬號就去注冊一個吧

發布

npm publish

發布完成立即生效,去npm就能查到并可以下載

使用

新建一個項目安裝包

npm i mzc-ng-api

發現很多東西都發布上去了。

而且在開發工作沒有智能提示。

完善優化

編譯時生成頭文件,*.d.ts。

解決編譯器提示功能

在tsconfig.json種設置

"declaration": true,

關于tsconfig.json的更多配置可以好好研究研究

指定發布文件

修改

{ "name": "mzc-ng-api", "version": "1.0.2", "description": "個人博客系統,從后臺api取數據的angular封裝", "main": "index.js", "types": "./index.d.ts", // 添加這個 "scripts": {  "test": "echo /"Error: no test specified/" && exit 1" }, "files": [ // 指定發布文件  "index.js",  "index.d.ts",  "src/*.js",  "src/*.d.ts",  "src/**/*.js",  "src/**/*.d.ts",  "README.md",  "LICENSE",  "package.json" ], "repository": {  "type": "git",  "url": "git+https://github.com/yiershan/MZC-Ng-Api.git" }, "keywords": [], "author": "yiershan <511176294@qq.com> (https://www.jianshu.com/u/8afb7e623b70)", "license": "MIT", "bugs": {  "url": "https://github.com/yiershan/MZC-Ng-Api/issues" }, "homepage": "https://github.com/yiershan/MZC-Ng-Api#readme"}

更新版本

npm version prepatch

更多操作

# 版本號從 1.2.3 變成 1.2.4-0,就是 1.2.4 版本的第一個預發布版本。npm version prepatch# 版本號從 1.2.4-0 變成 1.3.0-0,就是 1.3.0 版本的第一個預發布版本。npm version preminor# 版本號從 1.2.3 變成 2.0.0-0,就是 2.0.0 版本的第一個預發布版本。npm version premajor# 版本號從 2.0.0-0 變成 2.0.0-1,就是使預發布版本號加一。npm version prerelease更新npm publish

下載下來看看就好多了

封裝些腳本。

可以根據自己需求編寫更多快捷腳本

 "scripts": {  "build": "tsc -p .",  "b":"npm run build",  "version": "npm version prerelease",  "v":"mpm run v",  "publish": "npm run b && npm publish",  "p":"npm run publish" },

至此基本的流程算是走通了。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
国产性猛交xxxx免费看久久| 国产国语videosex另类| 国产日韩在线看| 国产精品女主播| 久久成人人人人精品欧| 成人中文字幕+乱码+中文字幕| 日本精品一区二区三区在线| 国产精品久久久久久中文字| 久久国产一区二区三区| 超碰97人人做人人爱少妇| 亚洲国产又黄又爽女人高潮的| 国产精品一区二区三区免费视频| 3344国产精品免费看| 亚洲久久久久久久久久久| 国产欧亚日韩视频| 色爱av美腿丝袜综合粉嫩av| 亚洲免费视频一区二区| 欧日韩在线观看| 日韩在线观看网址| 亚洲free性xxxx护士白浆| 97久久精品人搡人人玩| 欧美日韩在线视频一区二区| 久久综合色影院| 国产999视频| 欧美国产欧美亚洲国产日韩mv天天看完整| 亚洲福利视频在线| 成人高清视频观看www| 久久人人爽国产| 国产精品成人av在线| 中文字幕亚洲欧美| 精品激情国产视频| 国产美女精品免费电影| 日本成人激情视频| 国产香蕉精品视频一区二区三区| 亚洲美女精品久久| 国产日韩欧美另类| 在线看欧美日韩| 国产精品91一区| 青青草一区二区| 亚洲欧美日韩国产精品| 亚洲欧美日韩在线高清直播| 曰本色欧美视频在线| 亚洲xxxxx电影| 欧美丝袜一区二区| 亚洲bt欧美bt日本bt| www.日本久久久久com.| 精品美女久久久久久免费| 91性高湖久久久久久久久_久久99| 国产成一区二区| 国产精品精品国产| 久久最新资源网| 国产精品人成电影| 亚洲精品国产品国语在线| 91精品一区二区| 中文字幕在线看视频国产欧美| 中文字幕欧美在线| 国产精品久久不能| 欧美日本高清一区| 欧美精品在线免费播放| 麻豆国产精品va在线观看不卡| 在线播放亚洲激情| 久久久久久久一区二区三区| 91sa在线看| 欧美中文在线观看国产| 91社区国产高清| 久久成人亚洲精品| 精品国产福利视频| 国产欧美一区二区| 中文字幕成人在线| 久久av资源网站| 欧美极品xxxx| 成人高清视频观看www| 午夜精品蜜臀一区二区三区免费| 久久久av网站| 国产精品视频不卡| 亚洲va久久久噜噜噜久久天堂| 欧美国产乱视频| 久久精品国产精品| 国产专区精品视频| 91亚洲精品视频| 亚洲www视频| 98精品在线视频| 国产成人福利网站| 中文综合在线观看| 欧美激情网站在线观看| 8090理伦午夜在线电影| 久久精品国产精品亚洲| 亚洲欧美制服综合另类| 国产一区二区三区毛片| 欧美久久精品一级黑人c片| 亚洲欧美第一页| 久久综合九色九九| 亚州成人av在线| 中文字幕日韩在线播放| 亚洲一品av免费观看| 欧美性猛交xxxx免费看漫画| 国产日韩视频在线观看| 成人网址在线观看| 一本一本久久a久久精品综合小说| 亚洲欧美一区二区三区在线| 中文字幕日韩电影| 欧美激情xxxx性bbbb| 国产亚洲精品久久久久久| 精品偷拍各种wc美女嘘嘘| 亚洲欧美日韩精品久久| 久久综合88中文色鬼| 久久国产精品免费视频| 国产精品日韩一区| 亚洲国产精品久久久久久| 伊人久久综合97精品| 亚洲a级在线观看| 91视频免费在线| 久久久免费观看| 国产成人在线精品| 欧美一区视频在线| 国产精品美女免费视频| 欧美男插女视频| 狠狠色狠狠色综合日日五| 欧美一区三区三区高中清蜜桃| 狠狠操狠狠色综合网| 亚洲第一在线视频| 日韩欧美亚洲综合| 欧美三级欧美成人高清www| 亚洲国产精品女人久久久| 最近2019好看的中文字幕免费| 国产成人短视频| 欧美激情中文网| 成人黄色av网站| 在线国产精品播放| 国外成人性视频| 92看片淫黄大片看国产片| 日韩在线播放av| 国产精品日韩在线| 亚洲国产精品国自产拍av秋霞| 国产亚洲欧美另类中文| 亚洲伊人成综合成人网| 欧美黑人狂野猛交老妇| 国产精品国产福利国产秒拍| 精品日韩视频在线观看| 亚洲欧美另类中文字幕| 日韩欧美国产一区二区| 精品国产一区二区三区四区在线观看| 岛国av一区二区在线在线观看| 中文字幕国产精品| 欧美日韩在线观看视频小说| 国产视频精品在线| 国产一区二区三区视频免费| 8090理伦午夜在线电影| 久久精品电影一区二区| 国产成人av在线播放| 日韩网站在线观看| 国产九九精品视频| 欧日韩在线观看| 日韩欧美999| www.99久久热国产日韩欧美.com| 91免费福利视频| 精品中文字幕在线2019| 97免费中文视频在线观看| 亚洲精品av在线播放| 欧美性感美女h网站在线观看免费| 成人亚洲欧美一区二区三区| 亚洲精品中文字幕有码专区| 国产精品久久久精品| 91国产视频在线|