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

nipinit

v2.4.0

Published

A command-line utility to easily create new Node.js projects.

Downloads

38

Readme

nipinit

David npm-dl npm-ver node-current

💻 A command-line utility to easily create new Node.js projects.

Table of Content

Installation

You need Node.js v10.17.0 or higher.
Then, simply install nipinit globally like this:

$ npm i -g nipinit

Features

  • Initialize an npm project
  • Initialize Git, .gitignore and .gitattributes
  • Create GitHub's file (Issue/PR templates, changelog, contributing and actions (lint & build))
  • Set a license (either MIT, ISC or GPL-v3)
  • Possibility to use ES Modules (Node.js' ES Modules, not Babel's)
  • Install & configure Babel or TypeScript
  • Install & configure ESLint (choose between my configuration (noftalint), airbnb, recommended and standard)
  • Install nodemon (+ configure), dotenv (+ initialize), cross-env (+ use in npm scripts) and concurrently
  • Create a README, a .editorconfig and a basic file structure (src/main.{js/ts})
  • Save & use presets

Usage

Requirements

  • You need to have Node.js v10.17.0 or newer to use nipinit. You can check your Node.js' version with node -v.

Fresh start

To start a new node project with nipinit, go in the parent directory of the location you want in your terminal, and type:

$ nipinit

You will be prompted some questions to generate the boilerplate that fits you the most, and you will be good to go!

Presets

You can create presets when creating a new project (answer 'Yes' to the question Do you want to save this preset?). After that, you can generate a new project using this preset just by adding the --preset preset_name (or -p preset_name) argument to nipinit.

$ nipinit --preset myCoolPreset

If you create a project without using a preset, but it happens that the exact same configuration is already saved, nipinit will tell you so you can use it next time!

You can also manage your presets with

$ nipinit presets

Other options

There are multiple options (flags) you can add when running nipinit.

  • --preset, -p: see the section about presets
  • --dump-error, -d: Show the full error when one occurs.
  • --no-modules: Create a new project without installing node modules
  • --no-color: Create a new project without showing colors in the CLI

Screenshots

Nipinit Screenshot where we can see all the prompts asked and the success messages

TO-DO

  • [x] Make --no-modules add dependencies to the package.json (without installing them)
  • [x] Add an option to create the project with TypeScript
  • [ ] Add unit tests

License

Copyright © 2021 Elliot 'noftaly' Maisl. Licensed under the MIT license, see the license.