This is my tribute page for freeCodeCamp's first basic front end project dedicated to John von Neumann, one of the most important names in the history of computing. Demo is available on my site.
Icons made by Freepik from flaticon.com and licensed by CC 3.0 BY.
- I can view a tribute page with an image and text.
- I can click on a link that will take me to an external website with further information on the topic.
- Gulp.js task runner
- Webpack module bundler
- Babel compiler
- ESLint linter with Airbnb's base config
- Pug template engine
- Sass with PostCSS' Autoprefixer
- Particles.js
You need to have yarn
installed on your computer. (Actually, you could also use npm
but I prefer yarn
👌)
git clone https://github.com/zsoltime/fcc-tribute.git
cd fcc-tribute
yarn install
# OR
npm install
It builds HTML, CSS, and the JavaScript bundle, starts a dev server and refreshes the browser on every changes.
yarn start
# OR
npm start
It uglifies JS, minifies CSS and images, replaces references to non-optimized scripts and stylesheets in HTML files and copies everything necessary to the dist
folder - ready to upload.
yarn build
# OR
npm run build
It's the same as the build task above but it also starts a server so you can check your work.
yarn preview
# OR
npm run preview