Learn the Svelte JavaScript Framework - Full Course
Full Course on the Svelte JavaScript Framework.
βοΈ Code / Projects βοΈ
Handwashing App
π https://phptuts.github.io/fcc-handwashing/
π https://github.com/phptuts/fcc-handwashing
COVID-19 US Tracker App
π https://covid-us.noahglaser.net/
π https://github.com/phptuts/fcc-covid-19-us
Project Estimator App
π https://phptuts.github.io/fcc-project-estimator-svelte/
π https://github.com/phptuts/fcc-project-estimator-svelte
Tictactoe App
π https://phptuts.github.io/fcc-tictactoe-svelte/
π https://github.com/phptuts/fcc-tictactoe-svelte
βοΈ Created by by Coding With Noah: https://www.youtube.com/channel/UCjWnee4Cv1MESU8ALLsHdCA
βοΈ Course Contents βοΈ
β¨οΈ (00:01:02) What is svelte
β¨οΈ (00:01:25) What is Sapper
β¨οΈ (00:01:49) Svelte Demo
π REPL Demo: https://svelte.dev/repl/856a0501186742b2b2446fd720271ed4?version=3.20.1
β¨οΈ (00:07:41) What we are building
β¨οΈ (00:10:48) What you will need
π https://nodejs.org/en/
π https://git-scm.com/
π https://github.com
π https://code.visualstudio.com/
π https://marketplace.visualstudio.com/items?itemName=JamesBirtles.svelte-vscode
β¨οΈ (00:11:36) Installing Svelte
β¨οΈ (00:12:56) Clean up + tour
β¨οΈ (00:16:46) Installing CSS
π https://www.npmjs.com/package/rollup-plugin-css-only
π https://blueprintcss.dev/docs/grid
npm install blueprint rollup-plugin-css-only --save-dev
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&display=swap');
body {
font-family: 'Lato', sans-serif;
}
β¨οΈ (00:25:15) Components & HTML
π https://www.who.int/gpsc/clean_hands_protection/en/
β¨οΈ (https://)freesound.org/people/metrostock99/sounds/345086/
β¨οΈ (00:42:06) Timer Component & Reactive Variables
β¨οΈ (00:55:39) Playing Sound & Custom Events
β¨οΈ (01:02:32) Github Pages
npm install gh-pages --save-dev
β¨οΈ (01:06:41) What is Sapper
π https://sapper.svelte.dev/
β¨οΈ (01:07:31) What we'll be using to build covid-19 US Tracker
π https://covidtracking.com/
π https://bulma.io/
π https://www.chartjs.org/
π https://momentjs.com/
π https://github.com/axios/axios
β¨οΈ (01:08:52) Tour of the app
π https://covid-us.noahglaser.net/
β¨οΈ (01:10:49) Project Setup / Sapper Tour
β¨οΈ (01:20:48) Project Cleanup
β¨οΈ (01:25:21) NPM Install + Bulma Setup
npm install bulma rollup-plugin-css-only chart.js moment --save-dev
npm install --save axios
β¨οΈ (01:31:09) Page & Components
β¨οΈ (01:41:24) NavBar
π https://bulma.io/documentation/components/navbar/
β¨οΈ (01:51:39) About Pages + Titles
π https://bulma.io/documentation/layout/section/
β¨οΈ (01:58:55) Getting data from an api
β¨οΈ (02:13:51) Populating CovidStat component with data
π https://covidtracking.com/api
β¨οΈ (02:21:22) Error Page
β¨οΈ (02:24:51) CovidStat data for the states
β¨οΈ (02:45:30) Requesting & Parsing Chart Data
π https://charturl.com/app/examples/chartjs-timeseries
β¨οΈ (03:04:32) Covid Chart Component
β¨οΈ (03:21:39) Covid Chart State Component + Fixing Chartjs Errors
β¨οΈ (03:33:29) Request Data For States Table Component
β¨οΈ (03:41:48) Table Component
β¨οΈ (03:49:31) Filtering Table Component
β¨οΈ (04:12:03) Deploying Sapper
π https://www.digitalocean.com/docs/networking/dns/how-to/add-domains/
π https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-18-04
π https://certbot.eff.org/
π https://pm2.keymetrics.io/
β¨οΈ (04:29:25) Final Touches + Redeploy
π https://sapper.svelte.dev/docs/#prefetch_href
β¨οΈ (04:40:53) Project Estimator Introduction
β¨οΈ (04:41:44) Writable Store Demo
π https://svelte.dev/examples#writable-stores
β¨οΈ (04:45:36) Project Setup
π https://sscaffold-css.com/
β¨οΈ (04:52:01) Component Setup
β¨οΈ (04:56:28) Form Components
β¨οΈ (05:12:27) Writable Stores
β¨οΈ (05:21:13) Table Component
β¨οΈ (05:32:52) Edit Item
β¨οΈ (05:43:31) Remove Item
β¨οΈ (05:50:31) Github Pages
β¨οΈ (5:53:50 )Fixing Bugs and Redeploying
π https://github.com/sveltejs/svelte/issues/4687
π https://github.com/sveltejs/svelte/pull/4689
β¨οΈ (06:01:44) Svelte Amazing Community
β¨οΈ (06:03:00) Readable Stores Example
π https://svelte.dev/examples#readable-stores
β¨οΈ (06:05:53) Challenge Create HTML & CSS & Props
β¨οΈ (06:17:55) Node Server Tour
π https://github.com/phptuts/tictactoe-server
π https://chrome.google.com/webstore/detail/smart-websocket-client/omalebghpgejjiaoknljcfmglgbpocdp?hl=en-US
π https://www.postman.com/
β¨οΈ (06:26:34) Readable Store
β¨οΈ (06:46:23) Websock
β¨οΈ (06:58:14) New Game
β¨οΈ (07:02:19) Deploying TicTacToe To Github
β¨οΈ (07:06:20) Other Resources and Libraries
π https://svelte.dev/tutorial/basics
π https://svelte.dev/examples#hello-world
π https://routify.dev/
π https://bestguy.github.io/sveltestrap/
π https://smeltejs.com/
π https://sveltematerialui.com/
π https://discordapp.com/invite/yy75DKs
π https://www.reddit.com/r/sveltejs
π The Return of 'Write Less, Do More' by Rich Harris: https://www.youtube.com/watch?v=BzX4aTRPzno
π Rich Harris: Thinking Reactively: https://www.youtube.com/watch?v=AdNJ3fydeao
β¨οΈ (07:09:38) Congrats you completed the course