1.0.4 • Published 2 years ago

more-echo v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

webpack打包library发布到npm

项目结构

$ tree
.
├── package.json
├── src
│   └── index.js
└── webpack.config.js

入口文件 index.js

// src/index.js
export function echo(message) {
  console.log(message);
}

依赖配置 package.json

{
  "name": "more-echo",
  "version": "1.0.0",
  "description": "a demo for webpack package to npm",
  "main": "dist/more-echo.js",
  "scripts": {
    "build": "webpack"
  },
  "keywords": [
    "demo"
  ],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "webpack": "^5.72.1",
    "webpack-cli": "^4.9.2"
  }
}

配置文件 webpack.config.js

const path = require('path');

module.exports = {
  entry: './src/index.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'more-echo.js',
    globalObject: 'this',
    library: {
      name: 'moreEcho',
      type: 'umd',
    },
  },
};

参考 https://webpack.docschina.org/guides/author-libraries/

打包发布

# 打包
$ npm run build

# 发布
$ npm publish

npm地址:https://www.npmjs.com/package/more-echo

Node环境中使用

npm i more-echo

示例

const { echo } = require('more-echo');

echo('Hello World!');

浏览器中使用

<script src="./dist/more-echo.js"></script>

<script>
    moreEcho.echo('Hello World');
</script>

github: https://github.com/mouday/more-echo

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago