Add your first piece of website. For exemple: an amazing footer.
Stylesheets
Add architecture for sass
$mkdiratomsmoleculespages
Externals librairies
Dependencies 101
Welcome in the new JavaScript dependencies world, jungle π΄π΄π΄
First everything is gonna be alright, just take a breath and read theses sentences.
Npm is a package manager for Node.js
Bower is a JavaScript package manager π
Yarn is a package manager for your code πβ¨
Remember just one thing every dependencies lives in package.json or bower.json
For example if you want the same layout as medium.com you can install the headroom.js library
Install with npm
$ npm install headroom.js --save
Install with bower
Install with yarn
π Never omit --saveoption because it update automatically the dependecy file. Remember you work in a team. If you install a local dependency without saving it, you are going to break the project for others.
Import External librairies in your project
You know how works the dependencies in the JavaScript world.