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

appily

v0.3.2-alpha

Published

Generate a new app

Downloads

16

Readme

appily

Generate an application form a simple json configuration. Perfect for MVP's and admin sites. Built on ideas from smalltalk and other data-model driven application creation.

Build an appilcation in minutes not months!

Status

Alpha. We have met our alpha goals!
Appily can generate a react app that is able to perform full CRUD operations, with an Express, Postgres backend.

First app

See change log for more details.

Getting started

Install

$ npm install appily -g

Dev Setup

Environment Requirements

1. Node >= 14.x
2. Yarn
1. clone repo
2. $ yarn install
3. $ yarn link

Usage

$ appily config.json

config.json

{
  "name": "video-game-app",
  "models": {
    "Video Game": {
      "Title": "String",
      "Year Published": "String"
    },
    "Publisher": {
      "Name": "String"
    }
  }
}

Config

| Property | Description | Default | | -------- | ---------------------------------------------------------------------------- | -------- | | name | The name of your app | app | | dir | The relative directory the app will be created in | / | | api | express, indexedDB or stub | express | | db | postgres, indexedDB or none | postgres | | models | The data and relationships that make up your app, see below for more details | {} |

To use indexedDB you must set indexedDB for api and db

The above is based on the react template, you can make your own templates

Models

models is a collection of models which are used to generate the UI, Api and DB

models {
  modelName: {
      "plural": modelNamePlural,
      "properties": properties
  },
  ...
}

You can also use the short form

models {
  modelName: properties,
  ...
}

modelName: should be the name of your model as you want displayed in the app. It is recomended to include spaces.

Examples: "Theme Park Ride", "Car Part"...

properties

Properties are a colection of the properties in your model.

properties {
  propertyName: {type: type},
  ...
}

You can also use the short form

properties {
  propertyName: type,
  ...
}

propertyName: should be the name of the model's property as you want displayed in the app. It is recomended to include spaces.

Examples: "Year Made", "Color"...

required property

To make a property required simple add an * to the end of its name

properties {
  propertyName*: type,
  ...
}

Note the * will not be part of the properties' name

you can also do

properties {
  propertyName: {type: type, required: true},
  ...
}

types

Types should be in quoutes like

properties {
  propertyName: "String",
  ...
}

Supported types

| Type | Description | Renders As | | --------- | --------------- | ---------- | | "String" | A simple string | An Input | | "Boolean" | True or false | A Checkbox |

More types are coming

Contributors welcome

This project is in early stages and looking for contributers. See design.

Goals

Aim for progressive development with something useful asap See the road map.

Todo

  • add github test badge
  • add github test action (pipeline)
  • add options cli option, print out options from manfesto
  • add tests for cli
  • try to fix nested app issue (apps don't run from manual folder - nested npm package issue confuses npm install)
  • make tests cross OS
  • add support for nested models
    • add validation
    • detect relationships
    • create api/db to support this
    • support single model relationship UI: add, remove
    • support multi model relationship UI: add, remove
  • add types
    • Number - Alex calls dibs
    • DateTime
    • Enum
    • link
  • add better formatting/styling to types
    • string elipses, wrapping, etc
  • add spinner progress button
  • internationalize app (setup)
  • improve validation
    • [ ] add validation on type
    • [ ] Support validation rules

Appily

  • add config validation for model and properties

Client

  • add cancel edit button

Sever

  • move base out of express
  • have docker include express server
  • add logger (Pino?)
  • add env support
  • change createdAt, updatedAt to created_at, updated_at

Later

  • Pull validation into is own npm package
    • remove shared code
  • add better table filter
  • add types
    • tags
    • address
    • phone
    • year
    • dob
    • date range
    • time range
    • time
    • curency
    • quantity
  • add computed properties