Skip to content

DorminNoodles/HadoukenTyping

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HadoukenTyping

For launch project

cd client/
npm i
npm run build


cd server/
npm i
npm start

Create Webpack Folder

  npm init -y
  npm install webpack webpack-cli --save-dev
  mkdir src //for sources
  mkdir dist //for distribution

  npx webpack //test from src create main.js to dist

  touch webpack.config.js

  const path = require('path');
  module.exports = {
    entry: './src/index.js',
    output: {
      filename: 'main.js',
      path: path.resolve(__dirname, 'dist')
    }
  };

Launch ES6 file with NodeJS

  npm i esm
  node -r esm yourfile.js

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published