npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dwmkerr/template-nodejs-module

v0.1.0

Published

A template for a simple Node.js module.

Downloads

4

Readme

template-nodejs-module

Release Please codecov NPM Package Version

All Contributors

A template for a Node.js module that has basic standards for linting, testing, build pipelines, NPM deployment, documentation and contributors. Contains rich documentation, and a Template Guide with instructions on how to customise for your own use.

Screen Recording: A demo of the module

Template Quickstart

Clone the code to your machine, rename the template to match your GitHub username and provide a module name, then build and you are good to go!

git clone [email protected]:dwmkerr/template-nodejs-module
make rename-template # will ask you for your github username and project name
npm install
npm start
rm -rf ./scripts     # remove unneeded template scripts

Then follow the Template Guide for more instructions on how to customised the template to your needs. Once that's done, this quickstart section and the template guide section can be safely deleted from the README.

Quickstart

Install this module with the following command:

npm install --save @dwmkerr/template-nodejs-module

Use in your code with:

const templateNodeJsModule = require('@dwmkerr/template-nodejs-module');

// todo - add your code here.

Developer Guide

The project has the following basic structure:

| Path | Description | |----------------|----------------------------------------------------------------| | index.js | Module entrypoint. | | ./artifacts/ | Artifacts generated during build (reports etc). Not committed. | | ./docs/ | Project documentation. | | ./lib/ | Module source code. |

All other local files are configuration for tools and so on. The following modules are also used:

| Module | Description | |----------------------------------------------------------------------|---------------------------------------------| | Runtime Dependencies | | | debug | Enable / configure debug output at runtime. | | Development Dependencies | | | commitlint | Commit message formatting. | | eslint | Linting and code style. | | husky | Git Hook Management. | | jest | Testing and code coverage. | | Additional Dependencies | | | Codecov.io | Code coverage reporting for PRs and badges. |

Local Setup

Ensure you have Node.js installed. Node Version Manager is recommended. Use the latest Node Long-Term Support Version and install local dependencies with:

nvm use --lts
npm install

Linting the Code

To lint, run:

npm run lint

To lint and auto-fix mistakes where possible, run:

npm run lint:fix

All changes are linted as part of the pre-commit hook.

Testing the Code

Unit tests are in files adjacent to source files. For example, the tests for ./lib/hello-world.js are in ./lib/hello-world.test.js.

Run unit tests with:

npm test

You can set breakpoints in test code, or use the debugger statement to pause execution in a unit test to troubleshoot.

To run the test with the debugger enabled run:

npm run test:debug

Git Hooks & Conventional Commits

Husky is used to simplify the management of Git Hooks. Hooks are stored in the .husky/ directory.

A pre-commit hook ensures the code lints and tests pass. A commit-message hook ensures that commits follow Conventional Commits semantics. The commit message configuration is @commitlint/config-conventional and is specified directly in the .husky/commit-msg hook.

To commit without running hooks, use:

git commit --no-verify

Debugging

This module use the debug library to make it simple to log or show extra debugging information. To enable debug output:

DEBUG=template-nodejs-module npm run

Or run:

npm run start:debug

To add debug output, use the example below:

const debug = require('debug')('template-nodejs-module');

debug('Log debug output like this.');

Build Pipelines

There are two pipelines that run for the project:

Pull Request Pipeline

Whenever a pull request is raised, the Pull Request Workflow is run. This will:

  • Install dependencies
  • Lint
  • Run Tests
  • Upload Coverage

Each stage is run on all recent Node versions, except for the 'upload coverage' stage which only runs for the Node.js LTS version. When a pull request is merged to the main branch, if the changes trigger a new release, then Release Please will open a Release Pull Request. When this request is merged, the Release Pipeline is run.

Release Pipeline

When a Release Please pull request is merged to main, the Release Please Workflow is run. This will:

  • Install dependencies
  • Lint
  • Run Tests
  • Upload Coverage
  • Deploy to NPM if the NPM_TOKEN secret is set

Each stage is run on all recent Node versions, except for the 'upload coverage' stage which only runs for the Node.js LTS version.

⚠️ note that the NPM Publish step sets the package to public - don't forget to change this if you have a private module.

Adding Contributors

To add contributors, use a comment like the below in any pull request:

@all-contributors please add @<username> for docs, code, tests

More detailed documentation is available at:

https://allcontributors.org/docs/en/bot/usage

Managing Releases

When changes to main are made, the Release Please stage of the pipeline will work out whether a new release should be generated (by checking if there are user facing changes) and also what the new version number should be (by checking the log of conventional commits). Once this is done, if a release is required, a new pull request is opened that will create the release.

Force a specific release version with this command:

version="0.1.0"
git commit --allow-empty -m "chore: release ${version}" -m "Release-As: ${version}"

Contributors


ℹ️ Note this section of the documentation can be deleted when you have customised the project to your liking!

Template Guide

This section of the document covers how to use and adapt the code in this template. Once you have customised your project to meet your needs, you can safely delete it.

The design goals of this template are:

  • Focus on essential hygiene needed in open source projects - pull request builds, contributions list, commit standards and so on

  • Avoid being prescriptive with libraries - make it easy for users to swap out or remove

  • Adding TypeScript support

  • Changing the project name

  • Adding a coverage badge

Lint Configuration

Linting is handled by eslint. You can create your own eslint configuration by running:

npm init @eslint/config

If you want to use another linter, just delete the .eslintrc.yml file and update the package.json with the appropriate libraries and lint commands.

Test Configuration

Tests are run with jest. The Jest configuration is currently in the package.json file. If you extend this configuration, or want to use another test framework, you should put the test configuration into its own file.

Git Hooks

Husky is used to simplify the management of Git Hooks. The current Git Hook setup is very basic:

  • Pre Commit: Lint and run tests
  • Commit Message: Check with commitlint

If you want to uninstall Husky and remove the hooks, run:

npm uninstall husky && git config --unset core.hooksPath
git -rm .husky

Enabling Deploy to NPM

To deploy to NPM when your project has a 'release please' pull request merged, simply add an NODE_AUTH_TOKEN secret variable to your GitHub Actions:

Screenshot: The Settings > Secrets > Actions page

You can generate an NPM Auth token by following this guide:

https://docs.npmjs.com/creating-and-viewing-access-tokens

Enabling the Code Coverage Badge

The code coverage badges are provided by Codecov.io. To enable the for your project, log into htts://codecov.io using your GitHub account. Once any build pipeline has run for the project, there will be code coverage data and your project will be shown in the Codecov project list. Select your project, choose 'Settings > Badges' and update the markdown at the top of this file to use the badge code for your project:

Screenshot: The Codecov Project > Settings > Badges screen, showing the markdown for a project code coverage badge

Note that it is possible to create a code coverage badge without resorting to a third party service, the details are at:

https://dev.to/thejaredwilcurt/coverage-badge-with-github-actions-finally-59fa

This could be considered if you want to avoid using external services. You could also vote for the Code Coverage Badges GitHub Feature.

All Contributors Configuration

To enable [https://allcontributors.org] for your project, which allows you to keep track of contributors, install the All Contributors Bot by following the instructions below.

https://allcontributors.org/docs/en/bot/installation

To remove any 'All Contributors' configuration, just delete the 'Contributors' section of the README and the badge from the top of the file.

Recording a Demo and Embedding in the Readme

The demo shown has been recorded using asciinema with the resulting cast converted to SVG with svg-term-cli.

To record your own demo, make sure asciinema is installed, then run:

asciinema rec ./docs/demo.cast # Hit Ctrl-D when you have finished recording...
npx svg-term-cli --in ./docs/demo.cast --out ./docs/demo.svg --window

Testing the Rename Script

There is a basic test script that runs a Docker container, clones the repo, runs the rename script and then asserts that the project runs and shows the expected output. Run this test with:

cd ./scripts
./test-rename-module.sh

Potential Improvements

Some improvements to this template that might be worth considering:

  • Pull Request and Issue templates, in particular asking issue reporters to run with DEBUG=template-nodejs-module set
  • Suggested steps for turning this into a CLI (e.g. quick start for something like Commander)
  • Instructions on how to use pkg to build self-contained binaries
  • Auto-reload node.js with webpack or nodemon or similar
  • Steps required to convert to a TypeScript project
  • Add the 'rename' function to the demo cast