Skip to content

Instantly share code, notes, and snippets.

@onefriendaday
Created September 27, 2018 17:17
Show Gist options
  • Save onefriendaday/19424711b9d387dc1b61f054a7340d29 to your computer and use it in GitHub Desktop.
Save onefriendaday/19424711b9d387dc1b61f054a7340d29 to your computer and use it in GitHub Desktop.
Nodejs-storyblok-example
const StoryblokClient = require('storyblok-js-client')
const Storyblok = new StoryblokClient({
oauthToken: 'YOUR_OAUTH_TOKEN'
})
let start = async function() {
for (var i = 0; i < 20; i++) {
await Storyblok.get('spaces/YOUR_SPACE_ID/stories/YOUR_STORY_ID')
console.log(i)
}
}
start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment