Static websites are all the jam these days and you might have heard about the JAMStack. Static sites allow you to host very performant pre-built sites like my example site Compound interest calculator. Some popular static site frameworks include Sapper (uses Svelte), Next.js and Gatsby (uses React) and VuePress (ses Vue). This tutorial will show you how to build and host a static site on Netlify by using a GitHub repository for your code. For this tutorial I will be using Sapper, but any of the frameworks above should do just fine.
Project setup
To follow along with the blog you will need to have the following:
- Node installed
- A GitHub account and an empty repository
- A Netlify account
- A GitHub project with the code for your static site
- Knowledge of how your chosen framework creates bundles ready for static hosting
Initialize your project with your tool of choice. Since I'm using sapper, it's done by running the following command:
Copynpx degit "sveltejs/sapper-template#rollup" my-static-site
cd my-static-site
npm install
Sapper sites are prepared for static site hosting by running the export
command like below, (if you aren't following along with Sapper run whatever is the corresponding built/export command for your chosen site)
Copynpm run export
The above step isn't crucial, but it helps to know that your app can be served statically. To test our exported Sapper app, we can run the following in our terminal (if you're using another framework, look in the documentation how to serve your site statically):
Copynpx serve __sapper__/export
This will start a local webserver on your computer and it should greet you with something like the following image:
Visit the URL in the above notification and make sure your site is served properly.
Pushing our site to GitHub
Now that we've made sure our site can be hosted and accessed statically, it's time to push our site to GitHub to prepare it for release on Netlify.
Let's initialize our project directory as a git repository:
Copygit init
git add .
git commit -m "Initial commit"
I mentioned in the intro that you need will need an empty (don't initialize it with a README, gitignore or license) GitHub repository. If you don't have one, go to your GitHub account and create a new repository.
To be able to push our code to GitHub, we need to run the following commands to connect our local repo to the remote. Replace my-username
with your GitHub username and my-static-site
with the name of your GitHub repo.
Copygit remote add origin git@github.com:my-username/my-static-site.git git branch -M main git push -u origin main
If you refresh your GitHub repository after this, you should see your code there.
Deploying our site to Netlify
Log in to your Netlify account and go to the Team overview
tab. Here you should see something similar to the image below:
All we have to do now is complete the following steps:
- Click on
New site from Git
, this takes you to a three step process, the first being1. Connect to Git Provider
- Click on
GitHub
under the Continuous Deployment header to proceed - Go through the Netlify/GitHub auth process and make sure to allow Netlify access to your new repository. This takes you to section
2. Pick a repository
. - Select your repository from the list. This takes you to section
3. Build options, and deploy!
. - Fill out the information, for Sapper this involves the following settings (follow your chosen frameworks docs for this process if you're using something else):
- Owner should be yourself
Branch to deploy
should be set tomain
- Build command should be
npm run export
- Publish directory should be
__sapper__/export
- Click
Deploy site
.
After completing the steps above, you should be sent to a view that looks something like this:
Visiting that URL should take you to your deployed app ๐.
Redeploying our site after updating it
One of the best things with Netlify is that once we push changes to the main
branch, Netlify will build and deploy our project with all the new changes.
Go ahead and change something in your project and commit and push it to GitHub. Once that's done you can head over to the Deploys
tab on Netlify under your site and see that a new deploy is in progress.
Once it's deployed, you can visit your site again and see your changes.
Summary
Hosting your site on Netlify is a great option if you're just serving static content and you want to get something up and running quickly on the web. Netlify supports a bunch of other features like custom domain names, plugins and analytics that aren't free and I have yet to try them but I'm impressed so far.
Feel free to ask any questions. ๐