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

@seedrs/generator-seedrs-npm

v1.2.0

Published

Bootstraps an NPM package

Downloads

7

Readme

generator-seedrs-npm

npm version Dependency Status semantic-release

Bootstraps an NPM package

Installation

First, install Yeoman and @seedrs/generator-seedrs-npm using npm or yarn (we assume you have pre-installed node.js).

npm install -g yo
npm install -g @seedrs/generator-seedrs-npm

With yarn

yarn global add yo @seedrs/generator-seedrs-npm

Then create your directory and move into it

mkdir <app_name> && cd $_

Then generate your new project:

yo @seedrs/seedrs-npm

Prompts

Yeoman will prompt you for three things:

name - This is the name of your application. Choose it wisely!

description - This the the description for your NPM module. (Optional)

private - Answering yes will setup the project as a private module.

Buildkite

In order for buildkite to execute the pipeling, the steps will need to be executable. To do this, run the following command from the root of your project.

chmod +x .buildkite/steps/*.sh

Folder structure

Running the generator will scaffold your project in the following structure. It will also create a git repository.

__tests__
  │
  └─ index.test.js
.buildkite/
  │
  ├── steps/
  │   │
  │   ├── lint.sh
  │   │
  │   └── publish.sh
  │   │
  │   └── test.sh
  │
  └── pipeline.yml
scripts/
  │
  └─── test.js
src/
  │
  └─ index.js
._npmrc
.babelrc
.eslintrc.js
.gitignore
docker-compose.yml
Dockerfile
package.json
README.md

tests

Contains the tests for your NPM module.

.buildkite/

Contains a pipeline.yml which defines three tasks:

  • one for linting the project
  • one for running the tests
  • one for publishing the package to NPM

Scripts

Contains scripts used in development e.g. test

Src

Your module code goes in here!

Dockerfile

A base Dockerfile used for development, testing and building the application bundle.

docker-compose.yml

A docker-compose config to help you get started.

package.json

Contains modules that will help you get started with a new react project.

Getting started

To get started with development run

docker-compose up

This will create a docker container and install the packages in package.json.

Contributing

To contribute please follow the guidelines below. We will not accept PRs that do not conform to these simple rules.

linting

Make sure your changes pass the linter.

tests

Please write tests for any generators you add or templates you make changes to.

commitizen

Create structured git commits using yarn commit. Follow the prompts and push these changes to your branch.

Let's discuss your changes in the PR.

License

Apache-2.0 © [email protected]