Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ops-gaurav committed Dec 19, 2018
0 parents commit 639f86d
Show file tree
Hide file tree
Showing 10 changed files with 4,778 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"@babel/preset-env"
],
}
20 changes: 20 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"extends": "airbnb",
"env": {
"es6": true,
"node": true
},
"parser": "babel-eslint",
"rules": {
"indent": [
2,
"tab",
{
"SwitchCase": 1,
"VariableDeclarator": 1
}
],
"no-tabs": 0,
"experimentalDecorators": 1
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode
node_modules
lib
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
src
launcher.js
.gitignore
.eslintrc
rollup.config.js
12 changes: 12 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

/**
* This will export all the required packages.
* Acts as an indexer
*
* @author gaurav sharma
* @since Wednesday, December 19, 2018
*/
import Service from './src/service';
export default {
PluginService: Service,
};
13 changes: 13 additions & 0 deletions launcher.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* The worker module handler for the whole applicaitons
* This is the entry point of the application and it itself
* handles the clustering at the maximum level.
* Assigns each child process to the maximum number
* of available processes in the system.
* @author gaurav sharma
* @since Wednesday, December 19, 2018
*/
require('@babel/register');
require('@babel/polyfill');

require('./index');
Loading

0 comments on commit 639f86d

Please sign in to comment.