es-fork

1.0.2 • Public • Published

es-fork

Install

npm install --save es-fork

Usage

script.js

import path from 'path';

function p(){
    return new Promise((resolve, reject)=>{
        setTimeout(()=>{
            resolve(path.join(__dirname, __filename))
        })
    });
}

async function myAsync(){

    let val = await p();
    console.log('The current path is ', val);
}

myAsync();

run.js

import fork from 'es-fork';
//const fork = require('es-fork'); //Using commonjs

fork('./script.js').then(child=>{
    //Nothing needs to be done here
    //unless you want you want to use ipc messaging.
}).catch(err=>{
    console.log('test ERROR ',err);
});

API

The interface for es-fork is identical to node's child_process fork.

fork(command, argv, options) -> child_process

You can run the fork as if you were using require('child_process').fork.

About

es-fork uses rollup, and babel.

rollup is used to compile es2015 modules in your script to commonjs require type modules.

babel is used to compile async functions down to generators.

These are the basic steps that es-fork goes through when running a script.

  1. A temporary file is created, and the source script is read.
  2. The source script is compiled with rollup, and babel.
  3. Globals are altered to make the script string look like it's source.
  • __filename
  • __dirname
  • process.arg[1] = __filename
  1. The new script string is written to the temporary file.
  2. The path of the temporary file is passed to child_process.fork()

The most recent version of nodejs uses almost all of es2015. For this reason only es2015 modules, and async functions are compiled by es-fork.

Sometime in the future the babel dependency will be removed from es-fork as well.

If you want polyfills you should use ponyfills instead. Though most es2015 build-ins are supported by the latest node version.

Happy coding!

Readme

Keywords

Package Sidebar

Install

npm i es-fork

Weekly Downloads

0

Version

1.0.2

License

MIT

Last publish

Collaborators

  • hollowdoor