This client is a thin wrapper for the Storyblok API's to use in Node.js and the browser.
The version 2 uses corejs 3. If you are looking for the version that uses corejs 2 please use version 1.x.x.
npm install storyblok-js-client
Parameters
config
ObjectaccessToken
String, The preview token you can find in your space dashboard at https://app.storyblok.comcache
Objecttype
String,none
ormemory
- (
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)
- (
endpoint
String, optional)
Example for using the content deliver api
// 1. Require the Storyblok client
const StoryblokClient = require('storyblok-js-client')
// 2. Initialize the client with the preview token
// from your space dashboard at https://app.storyblok.com
let Storyblok = new StoryblokClient({
accessToken: 'xf5dRMMjltLzKOcNgMaU9Att'
})
Example for using the content management api
// 1. Require the Storyblok client
const StoryblokClient = require('storyblok-js-client')
const spaceId = 12345
// 2. Initialize the client with the oauth token
// from the my account area at https://app.storyblok.com
let 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)
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.
To clear the cache you can call Storyblok.flushCache()
or activate the automatic clear with clear: 'auto'.
let Storyblok = new StoryblokClient({
accessToken: 'xf5dRMMjltLzKOcNgMaU9Att',
cache: {
clear: 'auto',
type: 'memory'
}
})
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, Objectresponse
path
String, Path (can becdn/stories
,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);
})
With this method you can get all items at once.
Parameters
[return]
Promise, Array of entitiespath
String, Path (can becdn/stories
,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);
})
Parameters
[return]
Promise, Objectresponse
path
String, Path (spaces/*
, ... see more at https://www.storyblok.com/docs/management-api/authentication)payload
Object
Example
Storyblok
.post('spaces/12345/stories', {
story: {name 'xy', slug: 'xy'}
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.log(error);
})
Parameters
[return]
Promise, Objectresponse
path
String, Path (spaces/*
, ... see more at https://www.storyblok.com/docs/management-api/authentication)payload
Object
Example
Storyblok
.put('spaces/12345/stories', {
story: {name 'xy', slug: 'xy'}
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.log(error);
})
Parameters
[return]
Promise, Objectresponse
path
String, Path (spaces/*
, ... see more at https://www.storyblok.com/docs/management-api/authentication)payload
Object
Example
Storyblok
.delete('spaces/12345/stories', null)
.then((response) => {
console.log(response);
})
.catch((error) => {
console.log(error);
})
Parameters
[return]
Promise, Object returns the Storyblok client
Example
Storyblok.flushCache()
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):
Storyblok.setComponentResolver((component, blok) => {
return `<component :blok='${JSON.stringify(blok)}'
is="${component}"></component>`
})
Parameters
[return]
String, Rendered html of a richtext fieldrichtext
Object, Json object from a richtext field
Example
Storyblok.richTextResolver.render(blok.richtext)
const StoryblokClient = require('storyblok-js-client')
let client = new StoryblokClient({
accessToken: 'zlRONoLBKrilxkz2k6fYuwtt'
})
// 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)
})
Following a code example using the storyblok-js-client to backup all content on your local filesystem inside a 'backup' folder.
const StoryblokClient = require('storyblok-js-client')
const fs = require('fs')
let client = new StoryblokClient({
accessToken: 'WcdDcNgDm59K72EbsQg8Lgtt'
})
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)
const proxy = {
host: host,
port: port,
auth: {
username: 'username',
password: 'password'
}
}
const storyblok = new StoryblokClient({
...
https: false,
proxy: proxy
})
Read more about proxy settings in axios documentation
To define to add some classes to specific html attributes rendered by the rich text renderer. To do so you can overwrite the resolver and initialize it with your own schema definition. Copy the content of https://github.com/storyblok/storyblok-js-client/blob/master/source/schema.js to my-schema.js and overwrite richTextResolver like in the following example:
const StoryblokClient = require('storyblok-js-client')
const RichTextResolver = require('storyblok-js-client/dist/richTextResolver')
const MySchema = require('./my-schema')
let client = new StoryblokClient({
accessToken: 'WcdDcNgDm59K72EbsQg8Lgtt'
})
client.richTextResolver = new RichTextResolver(MySchema)
Fork me on Github.
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.