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

wetland-cli

v1.1.2

Published

Command line tools for wetland ORM.

Readme

Wetland-cli

Command line tools for wetland ORM.

Installation

npm i -g wetland-cli

Commands

Run wetland help to find the commands that are at your disposal.

Examples:

  • wetland migrator schema -d (dump the queries for the current schema)
  • wetland migrator schema -r (apply queries for the current schema)
  • wetland migrator status (shows the current status of your migrations)
  • wetland generator entity user username,email,password (use a generator, read below for more info)

Gernerators

Wetland-cli offers support for generators using Boards.

An example generator, one you might want to install as well, is wetland-generator-entity.

npm i -D wetland-generator-entity

You can find a skeleton, as a base to create your own here at wetland-generator-skeleton.

List generators

To list all available generators, run:

wetland generator --help

Example:

$ wetland generator --help

  Usage: wetland-generator [options] [command]


  Commands:

    entity [options] <name>    Generate a new entity
    skeleton [options] <name>  Generate a new greeting file

  Options:

    -h, --help           output usage information
    -V, --version        output the version number
    -c, --config <path>  defaults to $PWD/(wetland.js|wetland.json)

  Examples:

    $ wetland generator entity user -l ts -e -f "username,password:string,email:field({type: text, size: 255})"
    $ wetland generator skeleton greeting -a -x txt

Help for a specific generator

 $ wetland generator entity --help

  Usage: entity [options] <name>

  Generate a new entity

  Options:

    -h, --help                 output usage information
    -l, --language <language>  One of "ts" or "js" for the target language (defaults to js)
    -e, --extend               Set to extend wetland.Entity for .toObject (defaults to false)
    -f, --fields <fields>      Fields to add. E.g. `-f username:string,password:string`
    -i, --interactive          Use interactive mode to design the entity

License

MIT