html5-periodic-table
html5-periodic-table copied to clipboard
How To Generate index.html ?
Hi Mike,
I'm totally new to HTML5 and JS and I assume that the index.html is generated by a script/program or something like that with the CSS, js files lie in the src directory.
May I know that how am I supposed to run the script properly to make this happen?
Hello @yourNameIsGood
This repository is a Node.js project since we can see package.json
, in which Node.js package information is, on the root directory. So basically, you can build by following steps:
- Install Node.js.
- Run
npm install
command on the root directory. - Run
npm start
command which is defined inpackage.json
'sscripts
section.