You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

europium

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

europium

Something expected in next generation of Node.js

0.0.2
latest
Source
npmnpm
Version published
Weekly downloads
370
-9.76%
Maintainers
1
Weekly downloads
 
Created
Source

europium or fermium

Something expected in next generation of Node.js

total downloads of europium europium's License latest version of europium

If links in this document not avaiable, please access README on GitHub directly.

The active LTS version (v10) of Node.js is named Dubnium, while the previous three are named Carbon, Boron and Argon. All of them are names of chemical elements. So I collect some features which I expect to be implemented in future, and name this module with Europium.

-- UPDATE --
Unfortunately, Node.js v12 is already released and named Erbium. So, I decided to rename the package to Fermium.

ToC

  • Get Started
  • API

Get Started

const europium = require('europium');

function meet(name, callback) {
    let feeling;
    while (!feeling) {
        feeling = talk(name);
    }
    callback(null, feeling);
}

let meetyou = europium.util.promisible(meet);
meetyou('ching').then(feeling => {
    // ...
});

API

europium is made up of some sub modules. Each sub module may be accessed within namespace europium, or be required by itself. E.g.

// Access within namesapce `europium`.
const europium = require('europium');
europium.util

// Or, required by itself.
const util = require('europium/util');
util === europium.util

Here are available sub moduless: view on single page

Keywords

Node.js

FAQs

Package last updated on 03 Apr 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