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 🙏

© 2026 – Pkg Stats / Ryan Hefner

fulton-cli

v0.2.6

Published

the cli for fulton

Downloads

14

Readme

Fulton CLI

CLI tool for Fulton that help you get start with Fulton.

Installation

npm i -g fulton-cli

Commands

type fulton or fulton help <command> to see the all usages. all commands support wizard style to help you complete the command, or you con provide the particular options directly to skip the wizard.

New

new command helps you create a new web project powered by fulton-server

fulton-new

Usage:

  • fulton new [name] or fulton n [name]
    • [name] the name of the app*

Options:

  • -d, --databases <engine,engine,engine,...> the database engines the app uses
    • the support engines are:
      • mongodb
      • mysql (soon)
      • mssql (soon)
      • postgres (soon)
      • others (soon)
  • -f, --features <feature,feature,feature,...> enabled the features of the app
    • identitiy - this feature is involved supporting User Register, Login, Authentication and Authorization.
    • oauth-google - this feature is involved supporting Google OAuth Login.
    • oauth-facebook - this feature is involved supporting Facebook OAuth Login.
    • oauth-github - this feature is involved supporting GitHub OAuth Login.
    • api-docs - this feature is involved supporting Swagger UI documentation.
    • compression - this feature is involved supporting compression http response.
    • cors - this feature is involved supporting broswer cors.
    • email - this feature is involved supporting sending email to users.
    • json-api - this feature is involved supporting response json-api format.
    • docker - this feature is involved supporting docker.

Generate

generate command helps you scaffolding files

fulton-new

Schematic

Supported schematics:

  • e, entity scaffolding a entity of Database ORM file.
  • n, entity-router scaffolding a router file.
  • r, router scaffolding a router file.
  • s, service scaffolding a service file.

Options:

  • -f, --force override the file if it exists.
  • --not-open not open the file after it is generated.
  • --not-import not import the reference into app.ts after it is generated.

Feature

feature command helps you add or remove features

fulton-feature

Global Options

  • -h, --help Display help.
  • --no-color Disable colors.