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

solid-nm

v0.0.0-development

Published

Instant node module starter-kit

Downloads

3

Readme

⚡️ solid-nm ⚡️

This is exactly what I use for my own modules.

Instant node module starter-kit.

GitHub release Build Status Code Coverage Greenkeeper badge styled with prettier license

semantic-release Commitizen friendly PRs Welcome Code of Conduct Roadmap Examples

The problem

Don't let yourself for always having to setup any node module or open-source projects from scratch.

You should spend your time more on writing codes than setting them up.

This solution

This repo includes built-in modern tools which are widely-used in the community.

So you can shift your focus working on the project itself.

Setup

1. Get the source code

Clone this repo

$ git clone [email protected]:luftywiranda13/solid-nm.git my-module

Remove existing history from this repo

$ rm -rf .git
$ git init

2. Install dependencies

$ npm install

You don't have to use npm, use yarn if you want to.

3. Tweak as you need

You may need to change specific things like project name, badges, etc.

4. Validate the project

$ npm start validate

If it's all good, then you're ready to go!

How automated releasing works

It's 2017, you don't need to tag, bump version, write changelog, and publish to npm manually by yourself.

This is how to automate those processes:

1. Commit changes like you normally do

Add the changes you made

$ git add .

But instead of running git commit -m "blahblah", you need to run

npm start commit

Choose type of commit, then follow the instructions.

This way, you can make sure anyone who contribute to your repository write useful & meaningful commit message in to it. Then your changelog will be useful to the others too.

2. Push to GitHub

$ git push -u origin master

Manually do initial publishing to npm. remember you only need to do this only once

npm publish

Notice: don't bump your project's version manually. Ever!

3. Sit back and relax

Now let Travis CI and semantic-release do the releasing stuffs for you ☕ 💅

Tips

To find some more additional scripts you can run inside the project, run npm start on your terminal.

Those scripts are provided by nps.

Inspiration

Heavily inspired from Sindre Sorhus & Kent C. Dodds.

Other Solutions

I'm not aware of any. If you are, please make a pull request and add it here!

Contributors

Thanks goes to these people:

| Lufty Wiranda💻 📖 🔌 | | :---: |

This project follows the all-contributors specification. Contributions of any kind are welcome!

License

MIT © Lufty Wiranda.