Employee Management
git clone git clone https://github.com/msikka93/empmanagementui.git <== clone the repo
cd empmanagementui <== go to the folder
npm i <== install dependencies
npm run build:client <== build client
npm run build:server
and server side code
npm start <== start the app in local dev (in a new terminal)
Then open http://localhost:30001 to see empmanagementui in action 😎
You’ll need to have Node >= 10 (LTS version) on your local development machine You can download it here NodeJs (macOS/Linux/windows)
You’ll also need git You can download it here git download (macOS/Linux/windows)
You can use any editor of your choice but we recommend using the latest version of VS Code.
Clone the repo (or alternatively you can download the repo):
git clone https://github.com/msikka93/empmanagementui.git
It will create a directory called empmanagementui
inside the current folder.
Next step is to install the project dependencies. Once the cloning is done, you can open your project folder and run this command:
npm install
You're all set to run the app.👏
After successfull installation, you're ready to run the app. Run these commands in separate command windows:
npm run build:client
npm run build:server
npm start
Open http://localhost:30001 to see the app.