0.0.4 • Published 6 years ago

molli v0.0.4

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

CircleCI npm version

WARNING: The framework is under development, it is not ready to use in production Molli is an open-source backend framework to accelerate the development process. You can design GraphQL in minutes

Quick Start

  1. Install via npm

    npm i -g molli
  2. Define your own data model in type.gql file

    type Book @model {
      id: ID! @isUnique
      title: String!
    }

  3. Start server with your own mongodb

    MONGO_URL=mongodb://127.0.0.1:27017/test molli