A website starter example using the following stack:
- Sanity backend
- JavaScript Tagged Template Literals templating
- Scripts and utilities for build and development
- JavaScript Standard Style and ESLint for code linting
No other pre-/post processors or bundlers for JavaScript or CSS (Babel, PostCSS, Sass, Stylus, etc.) are included.
It features:
- A no-framework approach
- Plain pre-rendered pretty HTML
- Async component based architecture
- Data fetching from any source
- Data caching in development for fast iterations
- Vanilla CSS and JavaScript
- Zero overhead on delivery to end user
You should have the following tools installed on your computer:
- A unix based terminal emulator (command-line) (Terminal for Mac)
- Node.js and NPM, preferably installed with NVM
- Git for source control management
- A text editor for working with code (Atom, Sublime Text, Visual Studio Code, GNU Nano, Vim, Emacs)
- For tips on syntax highlighting, see editing.
This template repository can be used directly as a starting point. Click “Use this template” on GitHub, and clone your newly created repository to your computer.
In your terminal: cd /path/to/project
Website:
cd websitenpm install
Sanity:
Recommended: Clear out the Sanity folder and set up using their latest documentation. This ensures a fresh install with latest dependencies using your account and project.
Alternatively: Edit the sanity.json file with correct projectId and dataset. In this case, you might want to do a sanity install and sanity upgrade as well.
In your terminal: cd /path/to/project
Website:
cd websitenpm run dev
Sanity:
cd sanitysanity start
Method 1 – Build and upload website manually:
In your terminal:
cd /path/to/project/websitenpm run build
The files are output to dist, and its contents can be hosted on any static web server. For example, it can be uploaded to your hosting provider using FTP, or using something like AWS CLI to host it on AWS S3.
Method 2 – Automatic deployments:
Using a hosting provider like Netlify can simplify the process considerably as it has built-in continous integration. This means that you can set it up to build and deploy your site whenever the source code is pushed or the sanity content changes:
- Setup a project on Netlify and connect it with your hosted git repository (Github, Gitlab, Bitbucket).
- Setup Netlify builds triggering from Sanity:
- Alternative 1 – Trigger automatically when Sanity content is published using webhooks in Netlify and Sanity.
- Alternative 2 – Trigger builds manually from the Sanity dashboard interface using Netlify Deploy plugin.
In your terminal:
cd /path/to/project/sanitysanity deploy
Use Sublime’s package manager to install JSCustom.
Go to Preferences → Package settings → JS Custom → Settings and update or create the following configuration:
{
"configurations":
{
"Template literals":
{
"custom_templates":
{
"tags": {
"html": "scope:text.html.basic"
}
}
}
}
}
Go to Preferences → Package settings → JS Custom → Rebuild syntaxes and restart Sublime. You might have to close and reopen your files to get syntax highlighting to work.
For more details on customizing JS Custom, see the JS Custom GitHub repository.
Happy coding!
Partials load and execute client side scripts "locally" for each occurence using
import
in a script tag of type="module". Script tags will be scattered in the HTML document, but module loading are deferred automatically (See JavaScript Modules).
An example can be viewed in the counter partial and its client side script.
Advantages:
- No need to serialize and deserialize data and configuration in HTML
data-*attributes. It can be passed as properties in the function call directly. - Only client scripts that are actually in use for the given page is loaded and executed.
- Calls to client scripts are coupled with the partial, instead of being decoupled globally somewhere.
Potential drawbacks:
- Many script tags in the DOM. Is this a problem?
- Slower DOM parsing?
- More HTML over the wire?
- Problems with CSS and rendering? A rumour says that CSS grids handle script tags poorly, and require
script { display: none }.
- Is there any overhead calling
importmany times over, or do the browsers handle this efficiently? - Elements need identifiers (
idattribute), since we're targeting specific elements of the same type. - Is there any overhead in calling many
document.getElementByIdinstead of a singledocument.querySelectorAll?
This pattern can be measured up against the classic pattern of having global scripts.