Live data from Hacker News

Netlify Dev

netlify.com

181–190 of 237 posts

Re: Netlify Dev

#181
post #31

Can anyone explain the elevator pitch of Netlify to me? I know it's become quite popular in the last couple of years and I can't figure out why. I don't doubt that it's good at what it does, but it seems to do the same thing as any number of services. For example, I see a lot of people talk about it for static sites. But you get free static sites through GitHub, nearly free static sites on Amazon S3. What does Netlif…

> But you get free static sites through GitHub, nearly free static sites on Amazon S3. I've been really happy using Netlify (with Jekyll) for https://www.checkbot.io/ - I didn't have to think about server admin at all when I got traffic spikes from Hacker News and Product Hunt traffic, and development features make working on the website really straightforward. Features I like: - Git based deploys automatically when…

Great summary!

Out of the box support for prerendering is also fantastic too – https://www.netlify.com/docs/prerendering/

Re: Netlify Dev

#182

Earlier quoted context omitted.

> But you get free static sites through GitHub, nearly free static sites on Amazon S3. I've been really happy using Netlify (with Jekyll) for https://www.checkbot.io/ - I didn't have to think about server admin at all when I got traffic spikes from Hacker News and Product Hunt traffic, and development features make working on the website really straightforward. Features I like: - Git based deploys automatically when…

Just wondering does zeit also does the same ? http://zeit.co/

Zeit is more about full applications rather than mostly static sites but yes you can do the same thing with both.

Re: Netlify Dev

#183
post #31

Can anyone explain the elevator pitch of Netlify to me? I know it's become quite popular in the last couple of years and I can't figure out why. I don't doubt that it's good at what it does, but it seems to do the same thing as any number of services. For example, I see a lot of people talk about it for static sites. But you get free static sites through GitHub, nearly free static sites on Amazon S3. What does Netlif…

I've been using Netlify for a while on https://0xtracker.com and absolutely love it.

A few things that I love:

- Extremely cheap (i.e. free for my needs)

- Deployment previews for every PR. Coupled with Renovate, this is a fantastic way to manage dependencies. Especially useful since it's a hobby project, making me time constrained.

- One click support for prerendering

- Managed SSL. One less thing I need to do.

- One click rollbacks for when I screw up.

Re: Netlify Dev

#184

With our existing trend of moving everything to the cloud, I wonder why development environments aren't going in the same direction as well. It has so many benefits. I code on my digital ocean server (vim and tmux) and it gives allot of the benefits that netlify mentions like streaming live. If I don't have my computer I can just borrow anyone's computer (or use a public computer in the library) to make quick fixes o…

What's your setup like? I've been looking around to set something like this up, mainly for being able to do quick fixes on the go. (Or use my iPad when I'm on holiday)

Re: Netlify Dev

#185

Earlier quoted context omitted.

> But you get free static sites through GitHub, nearly free static sites on Amazon S3. I've been really happy using Netlify (with Jekyll) for https://www.checkbot.io/ - I didn't have to think about server admin at all when I got traffic spikes from Hacker News and Product Hunt traffic, and development features make working on the website really straightforward. Features I like: - Git based deploys automatically when…

If you're not aware, you get most of that for free with GitHub pages: https://pages.github.com/ It deploys when you push, is based on Jekyll, and GitHub handles all of the hosting/HTTPS/caching themselves.

You're forced to use Jekyll, though, and you're forced to use Github. Netlify lets you generate your site however you want and doesn't tie you to a git provider.

Re: Netlify Dev

#186
post #31

Can anyone explain the elevator pitch of Netlify to me? I know it's become quite popular in the last couple of years and I can't figure out why. I don't doubt that it's good at what it does, but it seems to do the same thing as any number of services. For example, I see a lot of people talk about it for static sites. But you get free static sites through GitHub, nearly free static sites on Amazon S3. What does Netlif…

> But you get free static sites through GitHub, nearly free static sites on Amazon S3. I've been really happy using Netlify (with Jekyll) for https://www.checkbot.io/ - I didn't have to think about server admin at all when I got traffic spikes from Hacker News and Product Hunt traffic, and development features make working on the website really straightforward. Features I like: - Git based deploys automatically when…

Obvious to everyone except me, it seems, so obvious that it's never mentioned by anybody, is: What about databases?

The answer could be, "Well, obviously, it's not for database-backed websites", or "Obviously it's perfect for database-backed websites, because now you can use their X feature for your database", or "Obviously, you use some other company to host your database but Netlify for everything else, which is a great improvement because...", or whatever.

What am I obviously missing?

Re: Netlify Dev

#187
post #31

Can anyone explain the elevator pitch of Netlify to me? I know it's become quite popular in the last couple of years and I can't figure out why. I don't doubt that it's good at what it does, but it seems to do the same thing as any number of services. For example, I see a lot of people talk about it for static sites. But you get free static sites through GitHub, nearly free static sites on Amazon S3. What does Netlif…

I'm using it from https://superjavascript.com and the reason I picked them:

1. It's free.

2. Deployment steps are just push to git and you're done. Since I am using git anyway this is as easy as it gets.

3. Fast edge CDN (get's 100% on Google Speed Check).

4. https is taken care of.

5. DNS cname stuff is taken care of. and they didn't screw me over here, and let me use a different provide for email.

Re: Netlify Dev

#188
post #85

Earlier quoted context omitted.

One feature I haven't seen in the comments here is the ability to just drag and drop an entire website folder from your harddisk to Netlify and it's live within seconds. Which worked great for a couple of older personal websites I had. Second feature that is great is that you can use the cli to perform a draft deploy, which generates a unique public URL which you can share with your testers/marketeers/writers/transla…

> One feature I haven't seen in the comments here is the ability to just drag and drop an entire website folder from your harddisk to Netlify and it's live within seconds. Which worked great for a couple of older personal websites I had. How is this different than `aws s3 sync local/ s3://your-website.com`?

It's just as easy with Netlify's tool too

netlifyctl deploy --publish-directory local/ --site-id site_id

Re: Netlify Dev

#189

With our existing trend of moving everything to the cloud, I wonder why development environments aren't going in the same direction as well. It has so many benefits. I code on my digital ocean server (vim and tmux) and it gives allot of the benefits that netlify mentions like streaming live. If I don't have my computer I can just borrow anyone's computer (or use a public computer in the library) to make quick fixes o…

What's your setup like? I've been looking around to set something like this up, mainly for being able to do quick fixes on the go. (Or use my iPad when I'm on holiday)

Unfortunately I don't have much to share because my setup is so simple. Literally just vim (you can find really awesome vimrc on GitHub, mines pretty messy), and tmux (simple apt install).

When I visit my friends place I usually just use their computer, otherwise I'll use my MacBook pro or desktop. I don't think about setup much, I just use whatever devices around me to access and write code on my server instance.

Re: Netlify Dev

#190

The comments here are so bizzarly positive for HN. Makes me feel that this might not be all genuine.

I mean, if you have tried Netlify before, you will know why they are loved so much
Post reply on HN