Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vmarchesin/how-to-publish-a-npm-package
A quick tutorial on how to publish your own npm package.
https://github.com/vmarchesin/how-to-publish-a-npm-package
Last synced: 25 days ago
JSON representation
A quick tutorial on how to publish your own npm package.
- Host: GitHub
- URL: https://github.com/vmarchesin/how-to-publish-a-npm-package
- Owner: vmarchesin
- License: mit
- Created: 2019-01-18T12:52:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-24T12:56:24.000Z (almost 6 years ago)
- Last Synced: 2024-10-10T09:05:46.198Z (27 days ago)
- Language: JavaScript
- Size: 43 KB
- Stars: 14
- Watchers: 0
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# How to publish a npm package
This is a quick tutorial on how you can publish your own npm package with minimal configuration. This will cover the basic setup, how npm works and how to ship good quality code.
The full tutorial can be found at my [Medium blog](https://medium.com/@vmarchesin/how-to-publish-a-npm-package-in-four-steps-4344ab88e852).
You'll need the following packages:
* @babel/core
* babel-loader
* webpack
* webpack-cliYou can install all the dependencies by running:
```bash
npm i -D @babel/core babel-loader webpack webpack-cli
```