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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@friends-of-js/javascript-kit

v1.1.0

Published

JavaScript and TypeScript module generator

Readme

@friends-of-js/javascript-kit

Build Status Maintainability Test Coverage codecov license

Preview

Install

yarn add global @friends-of-js/javascript-kit
# or
npm install -g @friends-of-js/javascript-kit

Usage

javascript-kit [directory]

Features

  • [x] Support JavaScript and TypeScript languages
  • [x] Fully customizable
  • [x] TSlint and ESlint out of the box
  • [x] Modules for both Node.js and browser
  • [x] Browser modules with webpack
  • [x] Generate both CommonJS and ESNext modules for Node.js
  • [x] Autogenerated TypeScript defenitions
  • [x] Node.js tests with Mocha and Chai
  • [x] Browser tests with Karma, Mocha and Chai
  • [x] Code coverage for both TypeScript and JavaScript through Istanbul and nyc
  • [x] Sending code coverage to Codecov, Codeclimate, and Codacy
  • [x] TravisCI out of the box
  • [x] Autogenerated docs
  • [x] Publishing to github and npm after succesfull build
  • [x] Publishing release to github with generated changelog
  • [x] Git hooks for linting and testing before publishing

Commands

For a complete list of the commands available for your module, see the section "scripts" in generated package.json

| Yarn | Npm | Make | Description | | ------------------ | --------------------- | ------------------ | ------------------------------------------------- | | yarn build | npm run build | make build | Build CommonJS, ESNext modules and Browser bundle | | yarn lint | npm run lint | make lint | Lint your code with TSLint or ESLint | | yarn fix | npm run fix | make fix | Fix errors found by linter | | yarn test | npm run test | make test | Run tests | | yarn coverage | npm run coverage | make coverage | Run tests and generate code coverage reports | | yarn docs | npm run docs | make docs | Generate documentation | | yarn release.major | npm run release.major | make release.major | Create and publish new major release | | yarn release.minor | npm run release.minor | make release.minor | Create and publish new minor release | | yarn release.patch | npm run release.patch | make release.patch | Create and publish new patch release | | yarn commit | npm run commit | make commit | Interactively create conventional commit message |

Project structure

| Name | Description | | ------------------- | ---------------------------------------------------------------- | | src | Your source files placed here | | spec | Contains your tests files | | node_modules | Contains all your npm dependencies | | build | Scripts that responsible for building package | | build/browser | Scripts for building browser package | | build/module | Typescript configs for building CommonJS and ESNext modules | | build/declarations | Typescript definitions and config for building eclarations files | | lib | Generated package | | lib/module | Node module packages | | lib/module/commonjs | Commonjs node module using es5 features | | lib/module/esnext | Node module using es7 and esnext features | | lib/browser | Browser package generated by webpack | | coverage | Code coverage report files | | docs | Generated documentation |

License

@friends-of-js/javascript-kit © Dmitriy Romanov, released under the MIT License. Authored and maintained with help from contributors (list).