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 🙏

© 2024 – Pkg Stats / Ryan Hefner

fill-in

v1.0.2

Published

interactive fill in via stdin and generate JSON from the input, based on JSON schema

Downloads

3

Readme

fill-in.js

Interactive fill in via stdin and generate JSON from the input, based on JSON schema.

Install

$ npm i fill-in

TL;DR:

  • This is a JavaScript object generator.
  • Takes JavaScript object in JSON Schema format that defines the configuration file format.
  • Interactively prompts the userer and generates a configuration file according to the JSON Schema and user input.

Example

import { fillIn } from 'fill-in';

async function main() {
  const schema = {
    "title": "Profile",
    "type": "object",
    "properties": {
      "firstName": {
        "type": "string",
        "description": "your first name",
        "examples": [ "Jane" ],
        "minLength": 1,
        "order": 10
      },
      "lastName": {
        "type": "string",
        "description": "your last name",
        "examples": [ "Doe" ],
        "minLength": 1,
        "order": 20
      },
      "age": {
        "type": "integer",
        "description": "your age",
        "examples": [ 30 ],
        "order": 30
      },
      "gender": {
        "type": "string",
        "description": "your gender",
        "enum": [ "male", "female", "other" ],
        "order": 40
      },
      "hobbies": {
        "type": "array",
        "description": "your hobbies",
        "order": 50,
        "items": {
          "type": "string"
        }
      },
      "public": {
        "type": "boolean",
        "description": "make your profile public",
        "order": 60,
        "default": false
      }
    },
    "required": [ "firstName", "lastName", "public" ]
  };

  const result = await fillIn(schema);
  console.log(result);
}

main();
$ node example/profile-generate.js
your first name: John
your last name: Smith
your age: 25
your gender [male/female/other]: male
your hobbies (you can enter multiple items. Terminate input by pressing Enter without value): Programming

make your profile public? (yes/no): no
{
  firstName: 'John',
  lastName: 'Smith',
  age: 25,
  gender: 'male',
  hobbies: [ 'Programming' ],
  public: false
}

Example JSON Schema

See sample directory.

References

async function fillIn(schema, option={})

  • schema: An object that defines the output format in JSON Schema
  • option: An object containing options to modify the behavior

Available options:

  • option.onlyRequired: boolean. If true, only process required properties. Default: false
  • option.defaults: object. If this value is given, use this object's each property as default value. Default: undefined
  • option.ignoreDefaultProperty: boolean. If true, ignore all default properties in input JSON Schema. Default: false

License

MIT License.

ChangeLog

  • v1.0.2 - 2022-12-04
    • support defaults and ignoreDefaultProperty options
  • v1.0.1 - 2022-12-04
    • fix documentation and publish settings
  • v1.0.0 - 2022-12-04
    • Initial public release