Way back when I first took your Udemy Angular course I found Netlify and deployed my first production Angular app to it. It's been a great platform to use. Pushing a feature branch for testing and then merging it with master to go live is a great workflow. I've just started using their "netlify dev --live" to quickly preview changes on a physical phone instead of relying on emulators. I really need to find an excuse to explore all the other bits they've added like forms and functions that didn't exist back then.
I forgot where I hosted an old website and had to go through your videos to find it as i remembered setting it up based off your tutorials, haha. Thanks man. Keep up the good work and all the best for 2020!
Great Example, awesome. For some reason my laptop's ( macbook pro 2017) fans went almost full when running the first command to install the netlify cli globally, any ideas why ?
Hello, brad. Can you please cover continuous integration and continuous delivery that would be very helpful for every developer's team to manage a project and faster development. Thanks Brad, God bless you and more power :)
I don't what is the level of coincidence.. But whenever I find a new service/topic about web development your new videos are always about that same topic.
Hey Brad, I want to see the Flutter SDK tutorials from your channel may be a playlist just to go with the basics. As I tried learning it from Udemy courses but most of the time it was too boring and eventually lost interest in it or even did not grasp the content. But the way you explain the stuff makes more comfortable and easy to grasp.. I just want a simple app tutorial somewhat like mean authentication app playlist to get started with flutter.. Please help me out with this. I shall be highly obliged for your act of kindness..
I am having issues with the _redirects file in the public folder in CRA. Not sure what is happening with the _redirects file. The temp fix would be to use the netlify.toml file and add the following... [[redirects]] from = "/your-route" to = "where-you-want-to-go" status = 200
well, netlify is offering to do SSR, so you could upload the react portion using netlify (connect to SCM and push new commit), then upload the backend elsewhere, or alternative upload the backend via lambda like he shows here.
i don't know what i am doing wrong but i couldn't get the redirects to work as shown here, anyone else has this problem? I would appreciate some pointers on that.
Nice vid man , I have issue .. I can't get github to deploy random words module correctly .. I've tried everything in netlifys build commands etc.. ( headers, variables tweaks lol ) but no go ..- works just fine from local env dev
Thanks for this Brad, I just watch you video and found that the function "Hello World" provided by Netlify has changed. I follow every step but I receive in the browser the function as {"message":"Hello World"} and not the word "Hello World". There is any video you have that can help me to understand what I'm doing wrong? Thanks bro
I faced the [ts] linting error in JS file before. there are some suggestions. you can try edit your settings "javascript.validate.enable": false (stackoverflow.com/questions/50823743/disable-tslint-in-vscode). In my case I added more config to my settings to fix it: "javascript.format.enable": false, "javascript.validate.enable": false, "typescript.format.enable": false, "typescript.suggestionActions.enabled": false, "typescript.tsc.autoDetect": "off",
Not sure what is happening with the _redirects file. The temp fix would be to use the netlify.toml file and add the following... [[redirects]] from = "/your-route" to = "where-you-want-to-go" status = 200
Netlify is really making our lives easier. Thanks Brad
Way back when I first took your Udemy Angular course I found Netlify and deployed my first production Angular app to it. It's been a great platform to use. Pushing a feature branch for testing and then merging it with master to go live is a great workflow. I've just started using their "netlify dev --live" to quickly preview changes on a physical phone instead of relying on emulators. I really need to find an excuse to explore all the other bits they've added like forms and functions that didn't exist back then.
Omg i just started using netlify with jekyll. Brad youre a mind reader, not the first time this happens.
It is a revolutionary platform, really. Makes deployment and now dev so easy for static sites and front end apps
@@TraversyMedia I see wordpress to jekyll+netlify conversion jobs lately. So great :)
loved it.. some things have changed but impresive.. do something with fauna crud!
Brad, as always, excellent! 👏👍
Please do more on this ... Totally awesome! An end to end (simple) crud form / mongo on this platform would be epic!
I forgot where I hosted an old website and had to go through your videos to find it as i remembered setting it up based off your tutorials, haha. Thanks man. Keep up the good work and all the best for 2020!
Netlify has changed their default HELLO WORLD function. To get Brad's example to work:
const randomWords = require("random-words");
exports.handler = async function getWord(event, context) {
try {
return {
statusCode: 200,
body: randomWords().toUpperCase()
};
} catch (err) {
return { statusCode: 500, body: err.toString() };
}
};
This is gonna be helpful in showing content to clients. Definitely gonna try it.
The API configuration was really helpful. Just what I was looking for :)
Awesome. Liked before watching
I have made some http request apps with heroku.Heroku makes the coding easier as firebase and netlify.
Can u please cover Git Hooks in your next tutorial. Thanks awesome work mate !
Superb video Brad, this video is so helpful as deployment is such a mystery at times. Many thanks
Love it before even watch it !❤️❤️
Brad! you're great! what about an Angular project and deployment ? thanks a lot
Hi Brad please do a video on recursive functions in javascript (how to make nested list by parent ID something like category-subcategory list)
Yeah, dev ops can be complex.
Thanks a lot Herr Traversy can you also show how to add authentication to a netlify deployment
Great Example, awesome. For some reason my laptop's ( macbook pro 2017) fans went almost full when running the first command to install the netlify cli globally, any ideas why ?
Sir, u r very best , ur tutorials very are osum
hii,i have created a contact form with node js and is perfectly working in local host but not in netlify can you help me?
Hello, brad. Can you please cover continuous integration and continuous delivery that would be very helpful for every developer's team to manage a project and faster development. Thanks Brad, God bless you and more power :)
I don't what is the level of coincidence.. But whenever I find a new service/topic about web development your new videos are always about that same topic.
This comment is getting old now 🤣🤣
Wow this is amazing! Netlify really made my life easier
Its free???
Hey Brad, I want to see the Flutter SDK tutorials from your channel may be a playlist just to go with the basics. As I tried learning it from Udemy courses but most of the time it was too boring and eventually lost interest in it or even did not grasp the content. But the way you explain the stuff makes more comfortable and easy to grasp.. I just want a simple app tutorial somewhat like mean authentication app playlist to get started with flutter.. Please help me out with this. I shall be highly obliged for your act of kindness..
I am having issues with the _redirects file in the public folder in CRA. Not sure what is happening with the _redirects file. The temp fix would be to use the netlify.toml file and add the following...
[[redirects]]
from = "/your-route"
to = "where-you-want-to-go"
status = 200
Great vid and explanation!
Hi Brad, Thank you so much!!! Today I finished your Udemy course :)
Awesome :) congrats and thank you
@@TraversyMedia I also thank you for teaching us :)
heey..also would love to take one..which one specifically did you take?
@@calebmbugua745 Hi. I bought Modern HTML & CSS From The Beginning (Including Sass). I really recommend it
Ita free??
Thank you very much for the tutorial, you are a life saver.
Brad, if you have both a Node (Adonis/express etc) server and a React deploy would you do this in the same server or one for each?
well, netlify is offering to do SSR, so you could upload the react portion using netlify (connect to SCM and push new commit), then upload the backend elsewhere, or alternative upload the backend via lambda like he shows here.
Thanks Brad! Are companies using Netlify or is this a tool freelancers use?
Is there a way to redirect POST requests? When tried, it's received as a GET request instead.
could you please make a vid about Netlify CMS?
Yes please.
Please yes :)
Yes definitely soon
senpai Brad noticed me!!!! ;P
hopefully, you'll use hugo + netlify CMS
I'm not quite comfortable with Gatsby yet...
Do you always run sudo with npm or pip? I found that if you don't and try to work around it, everything gets fucked
Is this suitable for small production project? I mean the free tier, the project is gonna be simple CRUD process from database only.
Hi Brad, love your stuff
i don't know what i am doing wrong but i couldn't get the redirects to work as shown here, anyone else has this problem? I would appreciate some pointers on that.
What if you use parcel to build your site parcel makes /css on every link that you have and can i upload multi page sites
Nice vid man , I have issue .. I can't get github to deploy random words module correctly .. I've tried everything in netlifys build commands etc.. ( headers, variables tweaks lol ) but no go ..- works just fine from local env dev
About the red line warning. Is there a space in there?
I think the netlify is similar with heroku & firebase.
Simple as that! Really cool.
Have you tried now by zeit too?
blokche_dev Would love to see Brad’s take on now!
Thank you Brad
Great video! I'm having trouble with the "netlify dev" step. When I access localhost:8888, I receive a 403 Forbidden response. Any insights?
Thanks for this Brad, I just watch you video and found that the function "Hello World" provided by Netlify has changed. I follow every step but I receive in the browser the function as {"message":"Hello World"} and not the word "Hello World". There is any video you have that can help me to understand what I'm doing wrong? Thanks bro
What's the difference between Netlify and Heroku and what is better?
netlify provides static site generation and heroku provides a simpler interface for aws, I believe.
HI,
love your videos Brad !!!
When i want to enter my localhost after netlify dev , i see forbidden how can i fix this thx
Netlify is on Steroids - awesome video
Is anyone else having trouble getting access to their environment variables when the run netlify dev?
my netlify CLI is not working
epic tutorial, thank you!
I have now a bunch of dumy submissions in netlify from doing your tutorials and some others. Is there a way to delete them? I coudnt find it so far...
Hello everyone, how to check the Netlify form is not empty please ?
Just In Time
Thanks Brad! U da MVP
Thanks
I faced the [ts] linting error in JS file before. there are some suggestions. you can try edit your settings "javascript.validate.enable": false (stackoverflow.com/questions/50823743/disable-tslint-in-vscode). In my case I added more config to my settings to fix it:
"javascript.format.enable": false,
"javascript.validate.enable": false,
"typescript.format.enable": false,
"typescript.suggestionActions.enabled": false,
"typescript.tsc.autoDetect": "off",
the redirects are not working for me... :( it just shows the same index page
me too
did you find a solution?
Not sure what is happening with the _redirects file. The temp fix would be to use the netlify.toml file and add the following...
[[redirects]]
from = "/your-route"
to = "where-you-want-to-go"
status = 200
Please can you show us how to make a translator app
Can we deploy php website? in netlify
good stuff
thanks sir
I think glitch is better =))
How many free Netlify websites can you deploy for free?
yessssssss!
Its free ???
First to comment. Nice Sir
Is there way to publish laravel proj ? i know this is only static but meh ;c
How do you create the html boilerplate with a single command in vs code?
! (Exclamation) and TAB
Emmet
Use ! Tab
Now a days using promotion you are posting useless content, unsubscribed
this was useless? netlify's platform is awesome, I'm extremely happy he made this video.
I have herpes