0.6.0 • Published 1 month ago

@solumy/engine v0.6.0

Weekly downloads
-
License
BSL 1.1
Repository
github
Last release
1 month ago

Solumy Engine - Web App Generator

Solumy Engine is a API to generate web app, fast and easy. With a configuration file, you can create a full stack application.

Getting Started

Pre-requisites

You should have Node.js 20.11.1 or higher installed on your machine.

Installation

In a node project, install the engine with npm:

npm install @solumy/engine

Usage

Then, create a startup file, for example index.js:

import App from '@solumy/engine'

const app = new App()
const url = await app.start({
  name: 'Hello world website',
  features: [
    {
      name: 'website',
      pages: [
        {
          name: 'home',
          path: '/',
          body: [
            {
              component: 'Title',
              text: 'Hello world!',
            },
          ],
        },
      ],
    },
  ],
})

console.log(`Server started at ${url}`)

Finally, run the startup file with node:

node index.js

Configuration

A configuration is a JSON representation of the application. It contains the pages, the tables, the automations, the roles, etc...

We will build a details documentation of the configuration in the future, but for now, you can see the examples to see how to configure the engine.

App Library

Contributing

Solumy Engine is built and maintained by a small team – we'd love your help to fix bugs and add features!

You can read our contributing guide here and our code of conduct here.

License

Solumy Engine is BSL 1.1 licensed.

0.6.0

1 month ago

0.5.6

1 month ago

0.5.5

1 month ago

0.5.4

1 month ago

0.5.3

1 month ago

0.5.2

1 month ago

0.5.1

1 month ago

0.4.17

2 months ago

0.5.0

2 months ago

0.4.15

4 months ago

0.4.16

4 months ago

0.4.13

4 months ago

0.4.14

4 months ago

0.4.11

4 months ago

0.4.12

4 months ago

0.4.10

4 months ago

0.4.9

6 months ago

0.4.8

6 months ago

0.4.7

6 months ago

0.4.6

6 months ago

0.4.5

6 months ago

0.4.4

6 months ago

0.4.3

6 months ago

0.4.2

6 months ago

0.4.1

6 months ago

0.3.1

7 months ago

0.3.0

7 months ago

0.2.3

7 months ago

0.2.2

7 months ago

0.2.1

7 months ago

0.2.0

7 months ago

0.1.0

7 months ago

0.0.10

7 months ago

0.0.21

7 months ago