Surge – Static Web Publishing for Front-End Developers
1–10 of 80 posts
Re: Surge – Static Web Publishing for Front-End Developers
#2Re: Surge – Static Web Publishing for Front-End Developers
#3Surge is what I've always wanted to when I do frontend development for fun and learning. This is especially true if you're new. When you're new, you don't want to set up a server to push to Heroku or Digital Ocean, you may not want to use GitHub pages, or other alternatives (not aware of all, just the ones I mentioned). You may still be new to git and git-based deployments.
Surge is simple: `surge -p build` will upload the `build` directory and give you a nice HTTPS URL to share with your friends. `surge` does the same with the current directory. You can pick a URL under their domain or use one you own. It all takes a few seconds. Perfect for portfolios, demos, etc.
If you use npm you can `npm install --save-dev surge` and add a script that does your production build step and then calls surge to deploy it.
Very underrated service!
Re: Surge – Static Web Publishing for Front-End Developers
#4Re: Surge – Static Web Publishing for Front-End Developers
#5Re: Surge – Static Web Publishing for Front-End Developers
#6Re: Surge – Static Web Publishing for Front-End Developers
#7Re: Surge – Static Web Publishing for Front-End Developers
#8Anyway, keep up the good work.
Re: Surge – Static Web Publishing for Front-End Developers
#9Re: Surge – Static Web Publishing for Front-End Developers
#10Nice service, but too expensive to be honest. My static websites (built with middleman) are hosted in Amazon S3 as a static website bucket and have a Cloudfront distribution in front of it. I use `middleman s3_sync` to deploy the build in one command and it takes care of everything, even Cloudfront invalidation. All for just a few pennies per month. Anyway, keep up the good work.