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

in1t-cli

v0.1.6

Published

A CLI tool for working with Meteor, extending Mantra, with extra added features

Downloads

2

Readme

npm license GitHub issues GitHub stars

In1t CLI

This tool was desinged to initially rely on Mantra CLI for working with meteor apps, but will gradually unplug it entirely.

Why?

The main goal behind creating this tool is to provide a more robust and flexible way to work with Meteor apps only using this tool, for all of your meteor development tasks.

Currently Mantra CLI is limited on it's functionality, and the rest of functionalities that I want to add can't be just forked and PRed, simply because it's a lot more than what was intented to be added inside Mantra CLI.

Automation:

The goal of building this package is automation.

  • Automate new project creation.
  • Automate adding default/base modules/packages.
  • Automate adding default ESLint roles
  • Automate git tasks like push, sync, pr, ..etc
  • Automate deployment to a VM, docker container, a swarm cluster, or kubernetes.
  • Automate your PM2 scripts.
  • ... etc

All of the above, while still maintaining ability to configure everything, to the deepest detail if necessary.

Usage:

As of 0.1.3

Usage:
  in1t [OPTIONS] <command> [ARGS]

Options:
  -n, --name [STRING]    Application name (Default is in1t_app)
  -p, --port [NUMBER]    Specify app port (Default is 3000)
  -db, --database [STRING]Database URL (Default is mongodb://127.0.0.1:27017/adreeb)
  -met, --method STING   Method name
  -col, --collection STINGCollection name
  -pub, --publication STINGPublication name
  -h, --help             Display help and usage details

Commands:
  new                    Create new app/method/collection/publication
  run                    Run in development mode
  lint                   Lint the app using Eslint, create configs if
                         necessary
  push                   Push current branch to remote
  pr                     Push current branch to remote, and open a new PR
  sync                   Fetch everything, and pull devel on top of current
                         branch
  setup                  Setup current project with all necessary default
                         modules/packages

Roadmap:

Release 0.1.3

  • [x] Default ESLint roles.
  • [x] Default modules.

Release 1.0.0

  • [x] Complete server generators handling.
  • [ ] Default babel configs.
  • [ ] Client modules/packages for React.

Release 1.1.0

  • [ ] Git automation.

Release 1.2.0

  • [ ] PM2 automation.

Release 2.0.0

  • [ ] Use Redux for app state on the client as a default approach.
  • [ ] Automate deployments to a single node (VM).
  • [ ] Support for dumping remote DB to local DB.
  • [ ] Support for restoring a local DB to a remote DB.

Release X

  • [ ] Deployments.
  • [ ] Support for setting up local environment using docker, or minikube.