manifest

4.3.2 • Public • Published

Manifest

Manifest is the simplest backend you will find.

It provides a complete backend to your client app without the hassle that comes with it. It actually fits into a single YAML file.

Here is an example of a complete Manifest app:

name: Pokemon app 🐣

entities:
  Pokemon 🐉:
    properties:
      - name
      - {
          name: type,
          type: choice,
          options: { values: [Fire, Water, Grass, Electric] }
        }
      - { name: level, type: number }
    belongsTo:
      - Trainer

  Trainer 🧑‍🎤:
    properties:
      - name
      - { name: isChampion, type: boolean }

Install

Simply run this command on your terminal from the root of your project:

npx add-manifest@latest

Test

npm run test
npm run test:e2e

Package Sidebar

Install

npm i manifest

Weekly Downloads

267

Version

4.3.2

License

MIT

Unpacked Size

5.64 MB

Total Files

354

Last publish

Collaborators

  • brunobuddy
  • sebastien-conejo