1.0.0 • Published 2 years ago

st_my-awesome-framework v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

You are using the app " st_my-awesome-framework "

This is designed for creation and reading data.

Usage example is bellow.

  const { server, eventBus } = require('my-awesome-framework');

  const port = 3000;
  const entities = ['users', 'posts', 'comments'];

  server(port, entities);

  eventBus.on('users.created', () => {
    // we can do something here
  })