0.1.3 • Published 2 years ago

@hackingbay/js-package-minimal-boilerplate v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Javascript package boilerplate by HackingBay

  • Rollup + Babel + Prettier + Strict ESlint + VSCode - Enterprise grade boilerplate

  • Minimalist js package boilerplate with rollup.js bundler and dev environment setup. No Sass/React support. For react use other template.

Editor Configuration

  • Editor of your preference. I used some VSCode specific config in .vscode folder and recommend plugins for enhanced experience.

Recommended VSCode Extensions:

  • Prettier (Official) - Code formatter
  • ESLint (Official) - Real time JS syntax validation

Technologies Used

  • Rollup.js
  • Yarn
  • Babel
  • Prettier + ESlint
  • Jest lint setup, jest can be added

Steps to use this project

  • Update name, license, publishConfig and repository fields in package.json as per your need.
  • yarn build to prepare dist folder for publishing.
  • Before publishing with npm make sure you are publishing to correct registry, public/private depending on project's need.
  • Change private:true to private:false in package.json to publish package to public registry.

Available Scripts

In the project directory, you can run:

yarn build

To build the project

yarn fix:all

Runs prettier formatter followed by eslint and stylelint, to format code and fix lint issues. Prettier is not good enough to run alone, must always be followed lint fixes included in this command.

npm login --registry https://PACKAGE-REGISTRY-URL

If your account doesn't exist in internal registry, ask admin to enable account registration temporarily. And, run following for the first time. Run this command in the root of the project only, to make sure your account is created in our local internal registry not in the npm public registry.

npm adduser --registry https://PACKAGE-REGISTRY-URL

If your account exists, login to the registry and do npm publish to our internal registry but running following command. Do it carefully, else publish could be published to public npm registry, which requires taking immediate actions to get it removed with in few days of publishing.

npm publish --registry https://PACKAGE-REGISTRY-URL

This commands publishes your package to our internal npm package registry.

If you are publishing to public registry for the first time to npm you may need to provide --access=public as argument. E.g.

npm publish --access=public --registry https://registry.npmjs.org

For every other time you need to upgrade version number in package.json before publish. Also, update license in package.json, which is currently set as restrictive UNLICENSED, not an open-source friendly license.

How to use your created package?

If using yarn:

yarn add @your-org-scope/your-package-name --registry https://PACKAGE-REGISTRY-URL

If using npm:

npm install @your-org-scope/your-package-name --save --registry https://PACKAGE-REGISTRY-URL

E.g. to install and use this sample public package published to npm registry:

npm i --save @hackingbay/js-package-minimal-boilerplate

or

yarn add @hackingbay/js-package-minimal-boilerplate

Use in your application just like any other imported package.

import { sum } from '@hackingbay/js-package-minimal-boilerplate'

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago