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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@monteway/app

v0.4.2

Published

CLI to easily create and extend projects templates

Downloads

43

Readme

@monteway/app

Core package of Monteway.js that is responsible for creating a project from scratch with a single command. It has also a feature of extending new or already existing projects with some predefined functionalities (called extensions).

Install

npm i -D @monteway/app

Usage of create command

  • Create new Next.js app

    npx @monteway/app create --template next --directory montewayjs-next-app

    This will setup a very, very basic Next.js application with TypeScript. The project is minimal, it has no styling solution pre-configured. You can add it using extensions (continue below to see it).

  • Create new Remix app

    npx @monteway/app create --template remix --directory montewayjs-remix-app

    An experimental template for Remix v1 app. We do not use Remix in the company right now for any production projects, so this is just a reference for the future to make sure that @monteway/app can support different frameworks.

  • Create new Express server

    npx @monteway/app create --template express --directory montewayjs-express-app

    Just an Express server with healtcheck route, CORS, cookies and body parsing enabled.

Usage of extend command

There are two ways to use the extend command to add extra functionalities or setup to the project:

  1. Interactive mode that displays a multiselect list with extensions compatible with the template we use:

    npx @monteway/app extend --template next --directory montewayjs-next-app
  2. Command line arguments to specify what features we want to add:

    npx @monteway/app extend --template next --directory montewayjs-next-app --with axios --with button

    This example adds a file with axios instance basic configuration and also a very generic button component.

Extensions

Here you can find a full reference of extensions we support along with information what templates are compatible with it.

| Extension (--with) | Compatible --template | Description | | -------------------- | ----------------------- | -------------------------------------- | | button | next, remix | React button component | | dependabot | all | Auto merge updates for npm libraries | | eslint | express | ESLint config | | eslint-next | next | ESLint config for Next.js | | eslint-remix | remix | ESLint config for Remix | | input | next, remix | React input component | | lefthook | all | Pre-commit hooks | | password-auth | next | Login, logout, forgot + reset password | | postinstall-script | all | Run some setup after npm install | | prettier | all | Prettier config | | react-query | next | Wraps Next app with React Query | | render | all | Deploy to Render.com | | tailwind | next | Adds Tailwind to app |