@ow-framework/hello-world
TypeScript icon, indicating that this package has built-in type declarations

4.0.0 • Public • Published

@ow-framework/hello-world

A simple hello world module for @ow-framework

Install

yarn add @ow-framework/hello-world

Usage

import Ow from '@ow-framework/core';
import OwHelloWorld from '@ow-framework/hello-world';

const app = new Ow();

app.addModules([
  OwHelloWorld
]);

app.start();

Usage with options

import Ow from '@ow-framework/core';
import OwHelloWorld from '@ow-framework/hello-world';

const app = new Ow();
const MyHelloWorld = new OwHelloWorld(app, {
  theString: 'Some teststring',
  logger: s => console.log(s)
})

app.addModules([
  MyHelloWorld
]);

app.start();

Readme

Keywords

none

Package Sidebar

Install

npm i @ow-framework/hello-world

Weekly Downloads

0

Version

4.0.0

License

ISC

Unpacked Size

8.46 kB

Total Files

7

Last publish

Collaborators

  • antsoldier
  • asovos
  • bonnevoyager
  • denis.loncaric
  • flipace
  • icky
  • mhawk
  • rgtk
  • visuallization