It is the missing ingredient of Web Components architecture. Simple bundler for GraphQL based website using esmodules. What makes it unique? It uses browser for bundling (not node). Remember in ESModules you can use URL imports and relative imports. You can also provide importmap for other imports
Install globally
npm i -g graphql-ssg
Init a new project. This will create graphql-ssg.json
in current directory. You don't need a package.json
but you can add one for type completions.
graphql-ssg --init .
Set up config.
{
"graphql": {
"pokemon": {
"url": "https://graphql-pokemon2.vercel.app/"
}
},
"in": "./pages",
"out": "./out",
"websocketPort": 1414,
"port": 8080
}
So you need to provide your schema url ( you can declare multiple schemas ) ,in and out dirs for graphql-ssg
You can also add headers if needed:
{
"graphql": {
"pokemon": {
"url": "https://graphql-pokemon2.vercel.app/",
"headers": {
"Authorization": "Bearer MyToken"
}
}
},
"in": "./pages",
"out": "./out",
"websocketPort": 1414,
"port": 8080
}
Watch
graphql-ssg
Build
graphql-ssg --build
String returned in contained in file export default is generated via SSG phase.
import { html } from './ssg/basic.js';
export default () => {
return html`
<div>Hello world</div>
`;
};
To have syntax coloring in html pleas install appropriate litelement extension for your IDE.
Config file can be generated or created manually. It should contain all the following values.
{
"graphql": {
"feature-mole": {
"url": "https://faker.graphqleditor.com/explore-projects/feature-mole/graphql"
}
},
"in": "./pages",
"out": "./out",
"websocketPort": 1416,
"port": 8082
}
Turn on typescript support URL imports also works here. Of course you can still import relative modules.
{
"graphql": {
"feature-mole": {
"url": "https://faker.graphqleditor.com/explore-projects/feature-mole/graphql"
}
},
"in": "./pages",
"out": "./out",
"websocketPort": 1416,
"port": 8082,
"mode": "typescript"
}
Config file is injected and typed. It is available only inside export default
and export const head
function to prevent leaking of secrets.
Usage in JS example:
const graphQLClient = Chain(ssg.config.HOST, {
headers: {
Authorization: `Bearer ${ssg.config.TOKEN}`,
},
});
Environment variables must be put side by side to graphql-ssg.json
in .env
file.It is available only inside export default
and export const head
.
Usage in JS example:
const graphQLClient = Chain(ssg.env.HOST, {
headers: {
Authorization: `Bearer ${ssg.env.TOKEN}`,
},
});
It is available only inside export default
and export const head
function to prevent leaking of secrets.
GraphQL SSG comes with generated library
Works like fetch to GraphQL, where you need to provide host and/or options to receive fully Autocompleted client for schema url from your config.
import { Chain } from './ssg/main-schema/index.js';
const graphQLClient = Chain(ssg.config.graphql['main-schema'].url);
const response = await graphQLClient.query({ people: true });
It doesnt transform html in any way, but gives you syntax coloring
import { html } from './ssg/basic.js';
const ADiv = html`
<div>Hello world</div>
`;
It renders markdown using remarkable renderer so it is transformed to html.
import { md } from './ssg/md.js';
const MarkdownContent = md`
# Title of my Story
blah blah blah blah blah blah
## How to read it?
`;
import { html } from './ssg/basic.js';
export const head = () => html`<title>Hello world!</div>`;
Data function is used for so called data hydration in JSX frameworks and others also. It is used for Static Site rendered websites to be able to consume the data and work on client side. So you need to handle both data and hydrate functions yourself so they can be executed on output script.
// Create your app
export const data = async () => {
const Fetch = Chain(ssg.config.graphql.pokemon.url, {
headers: {
'Content-Type': 'application/json',
},
});
return Fetch.query({
pokemons: [
{ first: 151 },
{
number: true,
name: true,
image: true,
types: true,
resistant: true,
weaknesses: true,
},
],
});
};
type DataType = ReturnType<typeof data> extends Promise<infer R> ? R : never;
export const hydrate = async (staticData: DataType) =>
ReactDOM.hydrate(<PokemonApp response={staticData} />, document.body);
export default async (staticData: DataType) => {
const renderBody = document.createElement('div');
ReactDOM.render(<PokemonApp response={staticData} />, renderBody);
return renderBody.innerHTML;
};
If you export pages function you can generate multiple pages per one file. This is useful for example for single blog post page. It takes
export const data = async () => {
const Fetch = Chain(ssg.config.graphql.pokemon.url, {
headers: {
'Content-Type': 'application/json',
},
});
return Fetch.query({
pokemons: [
{ first: 5 },
{
number: true,
name: true,
image: true,
types: true,
resistant: true,
weaknesses: true,
},
],
});
};
type DataType = ReturnType<typeof data> extends Promise<infer R> ? R : never;
export const pages = (staticData: DataType) => {
return staticData.pokemons?.map((p) => {
const renderBody = document.createElement('div');
ReactDOM.render(<PokemonApp {...p} />, renderBody);
return {
slug: p.name?.split(' ')[0],
body: renderBody.innerHTML,
data: p,
head: html`
<title>${p.name || ''}</title>
<link href="../index.css" rel="stylesheet" type="text/css" />
`,
};
});
};
You can use them as normally.
For example: If you use url that begins with https://cdn.skypack.dev
in your import. It will try to fetch typings from skypack and save them in typings folder referencing to jsconfig. This should provide typings for example in VSCode.
- Add esbuild
- Add TS support
- Add intelligent .d.ts autocompletion for imported es modules
- Add image supports
- Generate tsconfig
- Relative imports
- Allow head modification
- Pass env to browser
- Provide a way to inject config
- TSConfig generation for included declarations to work
- Make zeus configurable and importable file
- Clear error handling with line numbers
- split utility functions css,html,md from zeus
- allow to auto-zeus multiple schemas
- Types from url streaming
- JSX, TSX support
- Provide verbose info levels
- Create docs deployable to pages
- Resolve imports with no extension
- generate ts functions for ts projects
- catch esbuild transform errors
- support files exporting multiple static pages
- Add possibility to override html tag