Skip to content

joestomopolous/Nucleoid

 
 

Repository files navigation

Nucleoid NPM GitHub Workflow Status npm Discord

Banner

What is Nucleoid?

Nucleoid is a low-code framework for Node.js. As writing just like any other codes in Node.js, it rerenders the very same JavaScript codes and makes the necessary adjustments in the state as well as stores on the disk, so that your application doesn't require external database or anything else.

..but why?

Even simple applications today require lots of coding, libraries, tuning etc., and majority of them are technical requirements rather than business logic. Declarative runtimes like Nucleoid lets you immediately start writing business logic with less code lines.

Hello World

const nucleoid = require("nucleoidjs");
const app = nucleoid();

class User {constructor(name){this.name = name}}
nucleoid.register(User);

// 👇 This is it!
app.post("/users", () => new User("Daphne"));

app.listen(3000);

It is pretty much it, you successfully persisted your first object with this 👆

Just the reminder, you don't need external database, const app = nucleoid() will do the magic. 😎

Learn more at nucleoid.com

Nucleoid in a nutshell

Look! Up in the sky!

Status

Track at Trello

  • Beta is out
  • ES6 support
  • ES2018 support
  • IDE (WiP)
  • Production-ready

Please report an issue or ask a question at Discussions

About

Low-code Framework for Node.js

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%