Your presentation style is one of the best I have. seen. You are really good at presenting concepts. Please keep it up and make more content aimed at intermediate level developers. Fast direct and to the point info for people who have been around for a few years and no the lay of the land. Keep it up please speaking for the silent majority of devs we need good content under 10min. That is direct to the point and tells us what we need to know.
when you hitted enter on the "npm start" command, i was sure that you simply cut the video while loading, but then i read "started in 62ms" and I was like woooooooooow
Nothing is a one size fits all in web development. It's worth it for some, and not for others. In my case I tend to use Webpack most of the time, but if I needed a faster and more efficient build tool, I would set up my project with Snowpack. The hope is that either Webpack will catch up, or Snowpack will be offered by default with something like CRA.
Thank you for introducing snowpack to us, it is indeed lightening fast but we have to build the react project from scratch. I am currently using vite to build vue/react project and it is as fast as snowpack except it gives you the template/folder structure so that we can start building applications just like vue-cli/create-react-app, anyhow it is good to know what snowpack can do !!!
@@PortEXE yeah, I just looked it up on google and found the npm command to install the template: npx create-snowpack-app my-app --template @snowpack/app-template-react, this command also applies to vue and svelte template. I have googled sbout vite and snowpack seems vite is superior to snowpack !!!
im going insane from coding, but your video saved my life. i have 1 issue. at 6:49, when i type in my html, the page doesn't update at all and it's port 8080. 'hello world' doesn't change at all, even if i delete it or change it in html. pls help.
We want that full snowpack tutorial !!! Thank you so much for this tutorial. I was inclining on learning and using snowpack for the past couple of months and your video made me realize why was I waiting this long. Btw how can we integrate typescript into it?
Snowball is telling powershell it cant find index.js. Tried jsx, same thing. Followed this to a T and still got it. : ( Turns out I had to close powershell and run npm start again. Then I got this: Unhandled Runtime Error TypeError: (intermediate value).render is not a function Then turns out what you used is wrong and doesnt work(anymore?)? import ReactDOM from "react"; bricked it because import React was also importing from "react". Cant do it twice. So import ReactDOM from "react-dom"; is correct and that fixed it. Thanks though. Def gonna stick around.
Full tutorial would be amazing!
Your presentation style is one of the best I have. seen. You are really good at presenting concepts. Please keep it up and make more content aimed at intermediate level developers. Fast direct and to the point info for people who have been around for a few years and no the lay of the land. Keep it up please speaking for the silent majority of devs we need good content under 10min. That is direct to the point and tells us what we need to know.
Full tutorial on snowpack and config would be awsome
Amazing video, man. Sure, we would be thankful if you could make a complete video on Snowpack and its configuration
yess we need snowpack tutorial...
This video is a great introduction. Please do a video on using snowpack for for building a file for production.
This got me really excited. I will love that this can be used to React Native.
when you hitted enter on the "npm start" command, i was sure that you simply cut the video while loading, but then i read "started in 62ms" and I was like woooooooooow
I know!
I would love it if you could do a full tutorial on snowpack
dude ur the man. This is great. No i just need to set it up with next too
great video. What if the browser does not understand the module parameter?
Snowpack is great but is it worth it to do all these steps to set up react app for what this is offering
Nothing is a one size fits all in web development. It's worth it for some, and not for others. In my case I tend to use Webpack most of the time, but if I needed a faster and more efficient build tool, I would set up my project with Snowpack. The hope is that either Webpack will catch up, or Snowpack will be offered by default with something like CRA.
Thank you for introducing snowpack to us, it is indeed lightening fast but we have to build the react project from scratch. I am currently using vite to build vue/react project and it is as fast as snowpack except it gives you the template/folder structure so that we can start building applications just like vue-cli/create-react-app, anyhow it is good to know what snowpack can do !!!
Snowpack has a React template as well, I just wanted to do it from scratch for teaching purposes 😉
@@PortEXE yeah, I just looked it up on google and found the npm command to install the template:
npx create-snowpack-app my-app --template @snowpack/app-template-react, this command also applies to vue and svelte template. I have googled sbout vite and snowpack seems vite is superior to snowpack !!!
snowpack vs vite, which one wins?
I’d love to do a comparison video of the two
@@PortEXE that would be awesome !!!
Better than Parcel?
Yes
No full tutorial yet?
Please make full tutorial
how do you set up a src folder though?
im going insane from coding, but your video saved my life. i have 1 issue. at 6:49, when i type in my html, the page doesn't update at all and it's port 8080. 'hello world' doesn't change at all, even if i delete it or change it in html. pls help.
nevermind. i fixed it. life is good.
does this also have babel included, meaning that js code is transmuted in es2015 ?
We want that full snowpack tutorial !!! Thank you so much for this tutorial. I was inclining on learning and using snowpack for the past couple of months and your video made me realize why was I waiting this long. Btw how can we integrate typescript into it?
yes you can :D
in fact i think you don't need to configure basically nothing, almost sure that you don't even need plugins for typesciprt support
which theme are you using?
Laser wave
Please, do the snowpack + 11ty eleventy tutorial 🙂
so, Snowpack or Vite?
Seems like snowpack only accepts jsx files and not js, even with the same code. If I use js, it gives a build error. Any idea to fix it?
I plan to make a more in depth Snowpack tutorial that goes over custom configuration.
1st like and 1st comment
Good job brother keep itup
Thank you loads for this video, clear all the way through :D
This is not learn in 15 mins video 🤣
Snowball is telling powershell it cant find index.js. Tried jsx, same thing. Followed this to a T and still got it. : (
Turns out I had to close powershell and run npm start again. Then I got this:
Unhandled Runtime Error
TypeError: (intermediate value).render is not a function
Then turns out what you used is wrong and doesnt work(anymore?)?
import ReactDOM from "react"; bricked it because
import React was also importing from "react". Cant do it twice.
So
import ReactDOM from "react-dom"; is correct and that fixed it.
Thanks though. Def gonna stick around.