Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

hello-world-emo

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hello-world-emo

A hello world npm module whose main purpose is to experiment a 'modern' (typescript / ES6) module declaration and its consumption by various environments, including legacy.


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created

Hello World Emo

NPM version license

A hello world npm module whose real purpose is to experiment a 'modern' (typescript / ES6) module declaration and its consumption by various environments, including legacy.

This is an "emo" version, in reference to this article: JavaScript Modules: Welcome to My Emo Hellscape.

installation

npm i --save hello-world-emo

Then in your code:

  • node 6+ : const { hello } = require('hello-world-emo')
  • node stable (4): const hello = require('hello-world-emo').hello
  • node legacy (<4): var hello = require('hello-world-emo/dist/index.node-legacy').hello
  • ES2015/ES6: import { hello } from 'hello-world-emo'
    • a "jsnext" entry is provided in package.json for rollup users, pointing to ES6 code
  • typescript: import { hello } from 'hello-world-emo'
  • browser
    • TODO

Usage

hello()           --> Hello, World :-(
hello('Offirmo')  --> Hello, Offirmo :-(

What did you expect ?

Contributing

nvm use 6
npm run test:quick
npm run test:interactive

Then

npm run build
npm run np patch

Technical

This module is aiming at having optimal consumption by :

References :

Keywords

FAQs

Package last updated on 09 Aug 2016

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