0.0.2 • Published 1 year ago

@enjine/common v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@enjine/common

These are the extended Core Modules as Common Instance Component

Usage

const { DataGateway } = require('@enjine/common');
const { Databse } = require('@enjine/database');

const db = new Database('.db')

host.add([
  new Instance('', [
    new DataGateway('data', db, (context) => console.log(context))
  ])
]);