Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@ow-framework/hello-world

Package Overview
Dependencies
Maintainers
9
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ow-framework/hello-world

A simple hello world module for [@ow-framework](https://github.com/ow-framework/ow-packages/tree/master/packages/ow-core)

latest
npmnpm
Version
4.0.0
Version published
Maintainers
9
Created
Source

@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();

FAQs

Package last updated on 14 Jul 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts