json-server-init

0.2.0 • Public • Published

JSON Server Init Build Status npm version

Generate JSON database for JSON server using Filltext.com as random JSON data source.

Install

$ npm install -g json-server-init

Commands

  • create - Create new JSON database.
  • collection - Add new collection to existent database file (todo).

Options

Possible options are:

  • --name, -n - Name of the database JSON file to create (in case of create command) or use (collection command). Default name if not provided is "db.json".
  • --help, -h - Show help.
  • --version, -v - Show version number.

For example, to create "dev.json" schema file:

$ json-server-init create -n dev.json

Commands overview

create

Command produces several prompts.

Collection prompt

Prompt for collection name and number of rows render something like this:

> Collection name and number of rows, 5 if omited (ex: posts 10):

Valid input would be a new collection name with optional number separated by space indicating how many rows to generate for this collection. For example, users 10 will generate collection "users" with 10 records in it, sesstions will result into collection "sessions" with default 5 records, etc.

Fields prompt

After collection name is entered one would need to configure what fields collection should have:

>> What fields should "users" have?
   Comma-separated fieldname:fieldtype pairs (ex: id:index, username:username)

Entry should have specific format: fieldname:fieldtype.

  • fieldname - name of the field, only alpha-numeric characters.
  • fieldtype - type of the data. Corresponds to types filltext generator uses for fields, refere entire list for possible values.

For example, to generate users collection with three fields: id, username and age, one could enter this command:

>> What fields should "users" have?
   Comma-separated fieldname:fieldtype pairs (ex: id:index, username:username)
id:index, fname:firsrName, age:numberRange|18,80

Add another

You can add as many collections as necessary, after fields prompt there is a confirmation if more collections needs to be created:

> Add another collection? (y/n) n

If "y" is entered flow repeats "Collection prompt" step, otherwise it fetches JSON data and saves it to the file.

collection

TODO...

Example

Here is how typical workflow looks with create command:

$ json-server-init create
> Collection name and number of rows, 5 if omited (ex: posts 10):  users 2
>> What fields should "users" have?
   Comma-separated fieldname:fieldtype pairs (ex: id:index, username:username)
 id:index, username:username, motto:lorem|5
> Add another collection? (y/n) n
db.json saved.

Above will produce db.json file with content similar to

{
    "users": [
        {
            "id": 1,
            "username": "RGershowitz",
            "motto": "curabitur et magna placerat tellus"
        },
        {
            "id": 2,
            "username": "NMuroski",
            "motto": "ante nullam dolor sit placerat"
        }
    ]
}

Now you can start json-server:

$ json-server --watch db.json

License

MIT License © Aliaksandr Astashenkau

Package Sidebar

Install

npm i json-server-init@0.2.0

Version

0.2.0

License

MIT

Last publish

Collaborators

  • dfsq