• Stars
    star
    119
  • Rank 289,171 (Top 6 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 6 years ago
  • Updated about 1 month ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Universal JavaScript client for Storyblok's API
Storyblok Logo

Universal JavaScript Client for Storyblok's API

This client is a thin wrapper for the Storyblok API's to use in Node.js and the browser.

Storyblok JS Client npm Follow @Storyblok
Follow @Storyblok

πŸš€ Usage

Install

npm install storyblok-js-client # yarn add storyblok-js-client

Compatibility

Version to install Support
Latest storyblok-js-client Modern browsers + Node 18+
Latest storyblok-js-client
+ Fetch polyfill like isomorphic-fetch
Browsers and Node versions with no Fetch API support
Version 4 storyblok-js-client@4 Internet Explorer support

How to use it

Using the Content Deliver API

// 1. Import the Storyblok client
import StoryblokClient from "storyblok-js-client";

// 2. Initialize the client with the preview token
// from your space dashboard at https://app.storyblok.com
const Storyblok = new StoryblokClient({
  accessToken: <YOUR_SPACE_ACCESS_TOKEN>,
});

Using the Content Management API

// 1. Import the Storyblok client
import StoryblokClient from "storyblok-js-client";
const spaceId = <YOUR_SPACE_ID>;

// 2. Initialize the client with the oauth token
// from the my account area at https://app.storyblok.com
const Storyblok = new StoryblokClient({
  oauthToken: <YOUR_OAUTH_TOKEN>,
});

Storyblok.post(`spaces/${spaceId}/stories`, {
  story: { name: "xy", slug: "xy" },
});
Storyblok.put(`spaces/${spaceId}/stories/1`, {
  story: { name: "xy", slug: "xy" },
});
Storyblok.delete(`spaces/${spaceId}/stories/1`, null);

Using the RichTextResolver separately

You can import and use the RichTextResolver directly:

import RichTextResolver from 'storyblok-js-client/richTextResolver'

const resolver = new RichTextResolver()

const html = resolver.render(data)

NEW BRANCHES AND VERSIONS

The old master branch containing version 4.x.y has been moved to the v4 branch. We’ve renamed the master branch to main and now it contains version >= 5.0.0. If you wish to continue using the non Typescript version with axios, please use version 4. You can install it by running npm install https://github.com/storyblok/storyblok-js-client.git#4.x.x.

BREAKING CHANGES - FROM VERSION 6

Error handling from fetch has changed. Exceptions will be thrown as an object with the following structure:

{
	message: string
	status: number
	response: ISbResponse
}

You don't need to parse the error from the client's side.

BREAKING CHANGES - FROM VERSION 5

Added TypeScript - Version 5

We added TypeScript to our codebase, improving our code quality and assuring the correct implementation from the client's side. This change will probably break your code, because your Storyblok client's current implementation is possibly sending the wrong types to the source. If you use an IDE to code, you'll be able to hover the problematic cause and see what is being expected from the type. Yet, you can keep using our version without TypeScript.

Axios removal - Version 5

We removed our dependency on axios in Version 5. If you want to continue using our SDK with axios, please use version 4. The proxy feature was also removed in this version.

Fetch (use polyfill if needed) - Version 5

Version 5 is using native fetch API, supported by modern browsers and Node >= 18. If you are using an environment with no fetch API support, you can use a polyfill like isomorphic-fetch at the very beginning of your app entry point:

import 'isomorphic-fetch'
require('isomorphic-fetch') // in CJS environments

Documentation

Assets structure compatibility

We added retro-compatibility when using resolve_assets: 1 parameter under V2. Now, if you are using our V2 client, you should receive the assets structure just the same as V1.

Documentation

Class Storyblok

Parameters

  • config Object
    • (accessToken String, optional - The preview token you can find in your space dashboard at https://app.storyblok.com. This is mandatory only if you are using the CDN API.)
    • (oauthToken String, optional - The personal access token you can find in your account at https://app.storyblok.com/#/me/account?tab=token. This is mandatory only if you are using the Management API.)
    • (cache Object, optional)
      • (type String, optional - none or memory)
    • (responseInterceptor Function, optional - You can pass a function and return the result. For security reasons, Storyblok client will deal only with the response interceptor.)
    • (region String, optional)
    • (https Boolean, optional)
    • (rateLimit Integer, optional, defaults to 3 for management api and 5 for cdn api)
    • (timeout Integer, optional)
    • (maxRetries Integer, optional, defaults to 5)
    • (richTextSchema Object, optional - your custom schema for RichTextRenderer)
    • (resolveNestedRelations Boolean, optional - By default is true)
  • (endpoint String, optional)

Activating request cache

The Storyblok client comes with a caching mechanism. When initializing the Storyblok client you can define a cache provider for caching the requests in memory.

The default behavior of the cache is clear: 'manual', that is, if you need to clear the cache, you need to call Storyblok.flushCache() or activate the automatic clear with clear: 'auto', as in the example below.

let Storyblok = new StoryblokClient({
  accessToken: <YOUR_SPACE_ACCESS_TOKEN>,
  cache: {
    clear: "auto",
    type: "memory",
  },
});

Passing response interceptor

The Storyblok client lets you pass a function that serves as a response interceptor to it. Usage:

let Storyblok = new StoryblokClient({
  accessToken: <YOUR_SPACE_ACCESS_TOKEN>,
  cache: {
    clear: "auto",
    type: "memory",
  },
  responseInterceptor: (response) => {
    // one can handle status codes and more with the response
    if (response.status === 200) {
      // handle your status here
    }
    // ALWAYS return the response
    return response;
  },
});

Removing response interceptor

One can remove the reponseInterceptor at any time, by calling the function ejectInterceptor as shown below:

Storyblok.ejectInterceptor()

Error handling

Exceptions will be thrown as an object with the following structure:

{
	message: Error // an Error object with the error message
	status: number
	response: ISbResponse
}

where,

interface ISbResponse {
	data: any
	status: number
	statusText: string
	headers: any
	config: any
	request: any
}

One should catch the exception and handle it accordingly.

Resolve relations using the Storyblok Bridge

With this parameter, you can resolve relations with live updates in the Storyblok JS Bridge input event. With the resolve_relations parameter, you can resolve content entries that are two levels deep, such as resolve_relations=page.author,page.products. Resolved relations can be found in the root of the response under the property rels. You can learn more about resolve_relations in this tutorial

window.storyblok.resolveRelations(
	storyObject,
	relationsToResolve,
	callbackWhenResolved
)

Example

window.storyblok.on('input', (event) => {
	window.storyblok.addComments(event.story.content, event.story.id)
	window.storyblok.resolveRelations(
		event.story,
		['post.author', 'post.categories'],
		() => {}
	)
})

Method Storyblok#get

With this method you can get single or multiple items. The multiple items are paginated and you will receive 25 items per page by default. If you want to get all items at once use the getAll method.

Parameters

  • [return] Promise, Object response
  • path String, Path (can be cdn/stories, cdn/tags, cdn/datasources, cdn/links)
  • options Object, Options can be found in the API documentation.

Example

Storyblok.get('cdn/stories/home', {
	version: 'draft',
})
	.then((response) => {
		console.log(response)
	})
	.catch((error) => {
		console.log(error)
	})

Method Storyblok#getAll

With this method you can get all items at once.

Parameters

  • [return] Promise, Array of entities
  • path String, Path (can be cdn/stories, cdn/tags, cdn/datasources, cdn/links)
  • options Object, Options can be found in the API documentation.
  • entity String, Storyblok entity like stories, links or datasource. It's optional.

Example

Storyblok.getAll('cdn/stories', {
	version: 'draft',
})
	.then((stories) => {
		console.log(stories) // an array
	})
	.catch((error) => {
		console.log(error)
	})

Method Storyblok#post (only management api)

Parameters

Example

Storyblok.post('spaces/<YOUR_SPACE_ID>/stories', {
	story: { name: 'xy', slug: 'xy' },
})
	.then((response) => {
		console.log(response)
	})
	.catch((error) => {
		console.log(error)
	})

Method Storyblok#put (only management api)

Parameters

Example

Storyblok.put('spaces/<YOUR_SPACE_ID>/stories/1', {
	story: { name: 'xy', slug: 'xy' },
})
	.then((response) => {
		console.log(response)
	})
	.catch((error) => {
		console.log(error)
	})

Method Storyblok#delete (only management api)

Parameters

Example

Storyblok.delete('spaces/<YOUR_SPACE_ID>/stories/1', null)
	.then((response) => {
		console.log(response)
	})
	.catch((error) => {
		console.log(error)
	})

Method Storyblok#flushCache

Parameters

  • [return] Promise, Object returns the Storyblok client

Example

Storyblok.flushCache()

Method Storyblok#setComponentResolver

Parameters

  • callback Function, Render function to render components of the richtext field

Option 1: Use a switch case definition to render different components:

Storyblok.setComponentResolver((component, blok) => {
	switch (component) {
		case 'my-custom-component':
			return `<div class="my-component-class">${blok.text}</div>`
			break
		case 'my-header':
			return `<h1 class="my-class">${blok.title}</h1>`
			break
		default:
			return 'Resolver not defined'
	}
})

Option 2: Dynamically render a component (Example in Vue.js, which will only work with runtime template rendering enabled):

Storyblok.setComponentResolver((component, blok) => {
	return `<component :blok='${JSON.stringify(blok)}'
                     is="${component}"></component>`
})

Method Storyblok#richTextResolver.render

Parameters

  • [return] String, Rendered html of a richtext field
  • data Richtext object, An object with a content (an array of nodes) field.
  • options (optional) Options to control render behavior.

Example

Storyblok.richTextResolver.render(blok.richtext)

Optimizing images

You can instruct the richtext resolver to optimize images using Storyblok Image Service passing the option optimizeImages: true.

Example

Storyblok.richTextResolver.render(blok.richtext, { optimizeImages: true })

Also, it is possible to customize this option passing an object. All properties are optional and will be applied to each image in the field.

Example

const options = {
	optimizeImages: {
		class: 'w-full my-8 border-b border-black',
		width: 640, // image width
		height: 360, // image height
		loading: 'lazy', // 'lazy' | 'eager'
		filters: {
			blur: 0, // 0 to 100
			brightness: 0, // -100 to 100
			fill: 'transparent', // Or any hexadecimal value like FFCC99
			format: 'webp', // 'webp' | 'jpeg' | 'png'
			grayscale: false,
			quality: 95, // 0 to 100
			rotate: 0, // 0 | 90 | 180 | 270
		},
		// srcset accepts an array with image widths.
		// Example: [720, 1024, 1533]
		// will render srcset="//../m/720x0 720w", "//../m/1024x0 1024w", "//../m/1533x0 1280w"
		// Also accept an array to pass width and height.
		// Example: [[720,500], 1024, [1500, 1000]]
		// will render srcset="//../m/720x500 720w", "//../m/1024x0 1024w", "//../m/1500x1000 1280w"
		srcset: [720, 1024, 1533],
		sizes: ['(max-width: 767px) 100vw', '(max-width: 1024px) 768px', '1500px'],
	},
}

Storyblok.richTextResolver.render(blok.richtext, options)

Code examples

Filter by content type values and path

import StoryblokClient from "storyblok-js-client";

let client = new StoryblokClient({
  accessToken: <YOUR_SPACE_ACCESS_TOKEN>,
});

// Filter by boolean value in content type
client
  .get("cdn/stories", {
    version: "draft",
    filter_query: {
      is_featured: {
        in: true,
      },
    },
  })
  .then((res) => {
    console.log(res.data.stories);
  });

// Get all news and author contents
client
  .get("cdn/stories", {
    version: "draft",
    filter_query: {
      component: {
        in: "news,author",
      },
    },
  })
  .then((res) => {
    console.log(res.data.stories);
  });

// Get all content from the news folder
client
  .get("cdn/stories", {
    version: "draft",
    starts_with: "news/",
  })
  .then((res) => {
    console.log(res.data.stories);
  });

Download all content from Storyblok

Following a code example using the storyblok-js-client to back up all content on your local filesystem inside a 'backup' folder.

import StoryblokClient from "storyblok-js-client";
import fs from "fs";

let client = new StoryblokClient({
  accessToken: <YOUR_SPACE_ACCESS_TOKEN>,
});

let lastPage = 1;
let getStories = (page) => {
  client
    .get("cdn/stories", {
      version: "draft",
      per_page: 25,
      page: page,
    })
    .then((res) => {
      let stories = res.data.stories;
      stories.forEach((story) => {
        fs.writeFile(
          "./backup/" + story.id + ".json",
          JSON.stringify(story),
          (err) => {
            if (err) throw err;

            console.log(story.full_slug + " backed up");
          }
        );
      });

      let total = res.total;
      lastPage = Math.ceil(res.total / res.perPage);

      if (page <= lastPage) {
        page++;
        getStories(page);
      }
    });
};

getStories(1);

How to define a custom schema for the RichTextRenderer

To define how to add some classes to specific html attributes rendered by the rich text renderer, you need your own schema definition. With this new schema, you can pass it as the richTextSchema option when instantiate the StoryblokClient class. You must follow the default schema to do this.

Below, you can check an example:

import StoryblokClient from "storyblok-js-client";

// the default schema copied and updated
import MySchema from "./my-schema";

let client = new StoryblokClient({
  accessToken: <YOUR_SPACE_ACCESS_TOKEN>,
  richTextSchema: MySchema,
});

client.richTextResolver.render(data);

If you just want to change the way a specific tag is rendered you can import the default schema and extend it. Following an example that will render headlines with classes:

Instead of <p>Normal headline</p><h3><span class="margin-bottom-fdsafdsada">Styled headline</span></h3> it will render <p>Normal headline</p><h3 class="margin-bottom-fdsafdsada">Styled headline</h3>.

import RichTextResolver from 'storyblok-js-client/richTextResolver'
import MySchema from 'storyblok-js-client/schema'

MySchema.nodes.heading = function (node) {
	let attrs = {}

	if (
		node.content &&
		node.content.length === 1 &&
		node.content[0].marks &&
		node.content[0].marks.length === 1 &&
		node.content[0].marks[0].type === 'styled'
	) {
		attrs = node.content[0].marks[0].attrs
		delete node.content[0].marks
	}

	return {
		tag: [
			{
				tag: `h${node.attrs.level}`,
				attrs: attrs,
			},
		],
	}
}

let rteResolver = new RichTextResolver(MySchema)
let rendered = rteResolver.render({
	content: [
		{
			content: [
				{
					text: 'Normal headline',
					type: 'text',
				},
			],
			type: 'paragraph',
		},
		{
			attrs: {
				level: 3,
			},
			content: [
				{
					marks: [
						{
							attrs: {
								class: 'margin-bottom-fdsafdsada',
							},
							type: 'styled',
						},
					],
					text: 'Styled headline',
					type: 'text',
				},
			],
			type: 'heading',
		},
	],
	type: 'doc',
})

console.log(rendered)

Handling access token overwrite

You can overwrite an access token, and prevent errors from the function call by adding a .catch() method for each access token as shown below.

const public = 'token1'
const preview = 'token2'

You can pass the tokens as follows:

client.getStories({token: 'preview'...}).then(previewResponse => ... ).catch()
client.getStories({token: 'public'...}).then(publicResponse => ... ).catch()

πŸ”— Related Links

  • Storyblok & Javascript on GitHub: Check all of our Javascript open source repos;
  • Technology Hub: We prepared technology hubs so that you can find selected beginner tutorials, videos, boilerplates, and even cheatsheets all in one place;
  • Storyblok CLI: A simple CLI for scaffolding Storyblok projects and fieldtypes.

ℹ️ More Resources

Support

Contributing

Please see our contributing guidelines and our code of conduct. This project use semantic-release for generate new versions by using commit messages and we use the Angular Convention to naming the commits. Check this question about it in semantic-release FAQ.

More Repositories

1

storyblok

Info about Storyblok
309
star
2

storyblok-nuxt

Storyblok Nuxt module
TypeScript
256
star
3

nextjs-multilanguage-website

Nextjs Multilanguage Website
JavaScript
142
star
4

nuxtjs-multilanguage-website

Nuxtjs Multilanguage Website
Vue
136
star
5

storyblok-astro

Astro SDK for Storyblok CMS
TypeScript
120
star
6

storyblok-react

React SDK for Storyblok CMS
TypeScript
108
star
7

nuxtdoc

A setup to build beautiful documentation with Nuxt and Storyblok deployed on Netlify for everyone
Vue
104
star
8

awesome-storyblok

A curated list of awesome things related to Storyblok CMS. 😏
101
star
9

storyblok-design-system

Design System for the Storyblok UI.
TypeScript
86
star
10

storyblok-svelte

Svelte SDK for Storyblok CMS
Svelte
83
star
11

storyblok-vue

Vue.js SDK for Storyblok CMS
TypeScript
82
star
12

react-next-boilerplate

Nextjs Storyblok boilerplate
JavaScript
61
star
13

vue-nuxt-boilerplate

Nuxt.js Storyblok boilerplate
Vue
52
star
14

storyblok-docs

A Nuxt.js setup to generate an intuitive, readable and collaborative API documentation with copy and paste able examples
Vue
52
star
15

gatsby-source-storyblok

Gatsby source plugin for building websites using the Storyblok headless CMS as a data source.
JavaScript
43
star
16

bootstrap-nuxt-demo

Storyblok Demo Website using Nuxt
Vue
39
star
17

gatsby-storyblok-boilerplate

Gatsby starter template with Storyblok's headless cms and true preview
JavaScript
36
star
18

storyblok-php-client

Storyblok - PHP Client
PHP
29
star
19

storyblok-js

JavaScript SDK to connect Storyblok with your favourite framework that we don't have an official SDK for.
TypeScript
29
star
20

nuxtwebsite

A simple Nuxt.js setup to create websites with blog feature using Storyblok as CMS and Netlify to deploy it.
Vue
28
star
21

storyblok-demo-default

Vue
26
star
22

storyblok-cli

The repo for our Storyblok CLI
JavaScript
25
star
23

field-plugin

Create and deploy Storyblok Field Plugin
TypeScript
25
star
24

nuxt-ultimate-tutorial

Vue
25
star
25

storyblok-ruby-client

Storyblok ruby client for easy access of the content delivery api
Ruby
24
star
26

gridsome-source-storyblok

Official Storyblok source plugin for Gridsome
JavaScript
23
star
27

vuejs-boilerplate

Storyblok - JavaScript - VueJS Boilerplate
JavaScript
22
star
28

talk-from-zero-to-nextjs-hero

JavaScript
22
star
29

field-type-examples

A collection of field-types by the community
TypeScript
21
star
30

sveltekit-ultimate-tutorial

Ultimate Tutorial Series for Integrating Storyblok with SvelteKit projects
Svelte
19
star
31

getting-started

An example hello world project build with Nuxt.js / Next.js for the Storyblok.
JavaScript
18
star
32

tool-examples

A collection of tools to use with Storyblok by the community
JavaScript
18
star
33

wordpress-importer

A simple script for migrating content from WordPress to Storyblok.
JavaScript
17
star
34

next.js-13-boilerplate

JavaScript
17
star
35

storyblok-vuestorefront

Demo project for integration of Vue Storefront with Storyblok
Vue
16
star
36

storyblok-svelte-boilerplate

Code of the tutorial: Add a headless CMS with live preview to Svelte and Sapper in 5 minutes
JavaScript
16
star
37

gatsbyjs-multilanguage-website

Multilanguage website built with GatsbyJS and Storyblok
JavaScript
15
star
38

nextjs-bigcommerce-starter

TypeScript
15
star
39

nuxtjs

A NuxtJS Website with Storyblok as content source.
Vue
13
star
40

storyblok-gridsome-boilerplate-moon

Storyblok's Gridsome Boilerplate (Moon-Theme)
Vue
13
star
41

nuxt-storyblok-snipcart

Nuxt.js Storyblok Boilerplate with Snipcart integration
Vue
13
star
42

storyblok-markdown-richtext

A html/markdown to Storyblok richtext converter
JavaScript
13
star
43

storyblok-translations

Repository to contribute translations for app.storyblok.com
13
star
44

storyblok-fieldtype

Tool for creating custom fieldtypes for Storyblok with babel, browserify and hotreload
Vue
12
star
45

jekyll

Add a headless CMS to Jekyll
Ruby
12
star
46

storyblok-express-boilerplate

Node.js Express boilerplate
CSS
11
star
47

storyblok-workflow-app

Example Storyblok app
Vue
11
star
48

storyblok-angular-example

TypeScript
10
star
49

rails-boilerplate

Ruby on Rails Storyblok Starter Boilerplate
Ruby
10
star
50

next.js-ultimate-tutorial

JavaScript
10
star
51

big-commerce-nuxt-starter

A starter shop template for Big Commerce with Storyblok
Vue
9
star
52

storyblok-integration-field-starter

Custom integration field type starter kit for Storyblok
Vue
9
star
53

storyblok-python-client

Storyblok API library client for python
Python
9
star
54

storyblok-create-demo

Set up a modern framework app with Storyblok by running one command.
TypeScript
9
star
55

storyblok-react-native-starter

A Starter Kit for Storyblok with React Native (Expo)
JavaScript
8
star
56

talk-blazingly-fast-nuxtjs

Vue
8
star
57

nuxt-auth

Storyblok authentification module for the Nuxt.js
JavaScript
8
star
58

silex-boilerplate

Storyblok - PHP - Silex Boilerplate
PHP
8
star
59

storyblok-nuxt-beta

JavaScript
8
star
60

storyblok-gridsome-boilerplate

Storyblok starter boilerplate for Gridsome
Vue
8
star
61

storyblok-nextjs-multilanguage-isr-ssg-ssr

JavaScript
7
star
62

default-datasources

Storyblok - Default Datasources for Single Choice's
7
star
63

remix-ultimate-tutorial

JavaScript
7
star
64

space-tool-plugins

TypeScript
7
star
65

storyblok-react-example

Example of the integration of Storyblok in React
JavaScript
7
star
66

storyblok.github.io

Client Side Integration of the headless Storyblok CMS directly in a github page.
HTML
6
star
67

storyblok-nuxt-2

JavaScript
6
star
68

storyblok-ruby-richtext-renderer

This is Storyblok's rendering service to render html from the data of the richtext field type.
Ruby
6
star
69

storyblok-php-richtext-renderer

Storyblok PHP Richtext Renderer converts the RichText field into HTML
PHP
6
star
70

nodejs-boilerplate

Storyblok - NodeJS - Boilerplate
JavaScript
5
star
71

nextjs-persisted-query-graphql-example

Example of Next.js + Apollo + Storyblok GraphQL api with persisted queries
JavaScript
5
star
72

mui

TypeScript
5
star
73

django-boilerplate

Storyblok - Python - Django Boilerplate
Python
5
star
74

lambda-form-submission

Serverless Form Submission via AWS Lambda and Storyblok as Storage
HTML
5
star
75

storyblok-csv-import-example

An example on how to read a local CSV file and push it into Storyblok using the Management API.
JavaScript
5
star
76

lambda-crawler

Lambda Crawler which extracts content from websites and saves it to Amazon DynamoDB
JavaScript
4
star
77

storyblok-commerce

Commerce Interface and Modules
Vue
4
star
78

lambda-crawler-aws-elasticsearch

Lambda Crawler which extracts content from websites and saves it to AWS Elasticsearch
JavaScript
4
star
79

storyblok-vue-starter

Vue
4
star
80

astro-ultimate-tutorial

Astro
4
star
81

starter-template

DEPRECATED - Storyblok - Start Template
CSS
4
star
82

quickstart

πŸš€ Quickstart for Rendering Service
Liquid
4
star
83

cloudflare-next-example

A Next.js template application on how to use cloudflare pages for hosting applications built on Storyblok
JavaScript
4
star
84

sinatra-boilerplate

Ruby/Sinatra Example of a Storyblok Integration
CSS
4
star
85

storyblok-graphql-react-apollo

Demo project showcasing Storyblok's GraphQL api
JavaScript
4
star
86

storyblok-tool-example

Example of a Storyblok toolbar app
Vue
4
star
87

city-theme

City Theme for Storyblok
CSS
4
star
88

serverless-custom-app-starter

A starter repository with Nuxt.js to create a custom application in Storyblok
JavaScript
3
star
89

tutorial-websites-scraper

JavaScript
3
star
90

storyblok-react-starter

JavaScript
3
star
91

storyblok-vuejs-website

A demo website using Storyblok with Vuejs
CSS
3
star
92

example-scripts

Collection of example node.js or scripts for imports, exports or other kind of tasks one would like to perform with Storyblok.
JavaScript
3
star
93

gulp-blok

Storyblok - Gulp Plugin
JavaScript
3
star
94

storyblok-sync-script

JavaScript
2
star
95

quickstart-templates

JavaScript
2
star
96

nexo-theme

Nexo Theme for Storyblok
CSS
2
star
97

storyblok-fieldtype-react

Storyblok fieldtype plugin with React thanks to Vuera
HTML
2
star
98

nextjs-personalization-demo

nextjs-personalization-demo
JavaScript
2
star
99

gatsby-storyblok-boilerplate-v2

Gatsby (v2) starter template with Storyblok's headless cms and true preview
CSS
2
star
100

grunt-blok

Storyblok - Grunt Plugin
JavaScript
2
star