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

architect-project

v2.0.7

Published

A flexible template generator for any project

Readme

Architect-project

Powered by

webstap

A flexible template generator for any project

  • Implements the generation of files according to a prepared template
  • Allows you to process assets
  • File customization and support for any frameworks
  • Support EsLint/Prettier

Documentation

See the full documentation

Installation

Architect-project requires Node.js v6+ to run.

Install architect-project with npm

npm install -D architect-project

or yarn

yarn add --dev architect-project

CLI command structure

To see all commands, write arc in your terminal and you will see this

Options:
  -V, --version           output the version number
  -w, --watch             use watcher
  -e, --eslint            use esLint
  -mta, --module_to_atom  from module to atom
  -atm, --atom_to_module  from atom to module
  -u, --undo              undoing changes
  -r, --redo              redoing changes
  -c, --config <path>     path of the configuration to use
  -h, --help              display help for command

Commands:
  start|s                 Start architect-project generation
  convert|con             Convert source-map
  change                  Undoing and Redoing Changes
  help [command]          display help for command

Command arc start|s

To start generating files based on templates and source-map, which we covered in the previous chapters, you need to run arc start|s .

You can run this command with flags arc s --watch |--eslint |--config <path>

-w, --watch - this flag allows you to start tracking files, specified in config.js

-e, --eslint - this flag starts Eslint, which looks at the generated files and makes them look pretty

  • there must be files .eslintrc.js and .prettierrc.js if you use this in the root of the project *

-c, --config <path> - this flag lets you run Architect with a custom path to the settings directory

  • by default this directory should be named architect *

Command arc convert|con

arc convert is used to translate source-map from modular to atomic state

You can run this command with flags arc con --module_to_atom | --atom_to_module

Command arc change

Every time you use arc con --module_to_atom | --atom_to_module Architect retains the history of the previous states of source-map If suddenly you did something wrong, you can easily undo your actions using the command arc change

You can run this command with flags arc change --undo | --redo