ADD NAME HERE / Exports

NPM Package Template

This is a template NPM package repository. Get started with the following commands:

git clone https://github.com/Antman261/npm-package-template.git my-package
cd my-package
rm -rf .git
git init
git remote add origin https://github.com/<YOUR USERNAME>/<YOUR REPOSITORY>
nvm use
npm i

Where my-package is the name of your package

Now you can begin developing your package!

Included package scripts

Setting up GitHub Pages and CircleCI

GitHub Pages

Hosting your docs on GitHub Pages makes it easier for people to read the full documentation for your package. TypeDoc will generate markdown for your JSDoc comments, which will then be parsed and rendered into HTML by GitHub’s Jekyll engine on their pages server.

The following steps describe how to set up a GitHub Pages site for your package as a project site.

  1. Follow the instructions in the GitHub Pages Docs to set up Pages on your GitHub account or organisation if not already configured.
  2. Go to your repository for this package on GitHub and click Settings
  3. Click Pages
  4. Configure the branch as main (or master) and the directory to /docs
  5. Configure the remaining settings as per your own preferences

CircleCI

This template includes a basic CircleCI config which will install dependencies and run tests. You can use this to ensure that pull requests from contributors pass tests.

  1. Login to CircleCI with GitHub
  2. Click “Projects”
  3. Click “Set up project” for this repository and follow the instructions

Also consider setting up branch protection and requiring passing checks from CircleCI for pull requests.

Finish setting up your package

You’ll need to update the following files and properties to finish setting up your package:

When you’ve completed the above, and you’re ready to publish, npm publish will publish your package, complete with type definitions and docs.