Front-end
Content
Add your first piece of website. For exemple: an amazing footer.
Stylesheets
Add architecture for sass
$ mkdir atoms molecules pagesExternals 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 --saveInstall 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.
config.yml
Last updated
Was this helpful?