There's a big list of pleasant surprises as you work with their platform:
* You can deploy a folder of static content quickly by just dragging it onto the browser window
* Better, you can set up continuous deployment with github and netlify will run your build command and deploy the result whenever you push to Github
* Even better, Netlify will install any needed dependencies from any Gemfile, package.json, bower.json or requirements.txt in the root of your repository, before running your build. Now you are open to a wide world of static site generators and build tools.
* There's a command line tool and a rich, well-documented API
* Clever: You can add a simple _headers file to define custom headers
* Great for migrations: a _redirects file can power some pretty complex rulesets
* Blew my mind: you can configure proxying so that external API endpoints appear to the browser to be coming from the same domain. This can greatly simplify the headaches around cross-origin resources.
* Bonus: HTTPS is supported