TIL Static Site Generators
POSTED ON:
TAGS: javascript webdev
These let you make sites quickly.
Service | install command | Benefits |
---|---|---|
Gridsome | npm install --g @gridsome/cli then gridsome create <project-name> |
Static site Vue + GraphQL |
Nuxtjs | npx create-nuxt-app <project-name> |
Full-stack Vue |
VuePress | npm install -g vuepress then vuepress dev |
Static Site Vue / Mostly for documentation |
Gatsby | npm install -g gatsby-cli then gatsby new <project-name> |
Static site React + GraphQL |
Nextjs | npx create-next-app <project-name> |
Full-stack React |
Sapper | npx degit "sveltejs/sapper-template#webpack" <project-name |
Site with Svelte |
Related TILs
Tagged: javascript