npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@wearewondrous/nuxt-storyblok-router

v1.6.0

Published

Nuxt.js module to use storyblok routes instead of pages/ directory

Downloads

323

Readme

Nuxt Storyblok Router

NPM CircleCI Standard JS

Nuxt.js module to use storyblok routes instead of pages/ directory

📖 Release Notes

Setup

  1. Add the @wearewondrous/nuxt-storyblok-router dependency with yarn or npm to your project
  2. Add @wearewondrous/nuxt-storyblok-router to the modules section of nuxt.config.js
  3. Configure it:
{
  modules: [
    ['@wearewondrous/nuxt-storyblok-router', {
      // Module option here
    }]
  ]
}

Using top level options

{
  modules: [
    '@wearewondrous/nuxt-storyblok-router'
  ],
  storyblokRouter: [
    // Module options here
  ]
}

Options

accessToken

  • Default: this.options.storyblok || ''

Access Token for the StoryBlok API. Not needed if you already have installed the Storyblok Nuxt.js module

version

  • Default: 'published'

Version of the Storyblok Content. Use 'draft' for the preview Access Token.

contentTypeDir

  • Default: 'pages'

Optional. Directory where all Content Types are loaded from.

defaultLanguage

  • Default: ''

Optional. If your Storyblok Site has multiple languages, set defaultLanguage to the key of your Storyblok default language.

exclude

  • Default: []

Optional. Array of pages which shoud not be rendered. (e.g. settings)

sitemap

  • Default: false

Optional. Integration with the Nuxt Sitemap Module. Use a Object to configure the Module with Options

// nuxt.config.js
export default {
  storyblokRouter: {
    sitemap: {
      hostname: "domain.com",
      cacheTime: 10000000000
    }
  }
}

disabled

  • Default: false

Optional. Disables the module.

generateDefaultPaths

  • Default: false

Optional. If your Storyblok Site has multiple languages and generateDefaultPaths is set, paths without language code will be generated for the default language. For example if 'defaultLanguage' is 'en', '/about' and '/en/about' will be generated.

useFallback

  • Default: false

Optional. Adds explicit fallback to routes, needed for Storyblok live preview of newly created pages. Requires a fallback.vue file in your contentTypeDir.

Usage

When enabled, this module will disable the traditional Nuxt router. The Router file will be generated according to your Storyblok Routes.

Content Types

In Storyblok all pages need a Content Type.

  1. Create a Content Type in Storyblok.
  2. Create a Vue Component with the same name, which will act as a Content Type, in the pages/ directory. These Components have all the native nuxt featutes like asyncData, fetch, head, etc.

Tip: Use camelCase for the naming in Storyblok and PascalCase for your Component Naming.

Usage with nuxt-storyblok-queries (Recommended)

// pages/PageGeneric.vue

<template>
  <!-- Your template -->
</template>

<script>
export default {
  async asyncData({ $storyblok }) {
    const story = await $storyblok.getCurrentStory()

    return {
      story
    }
  }
}
</script>

Usage with storyblok-nuxt

// pages/PageGeneric.vue

<template>
  <!-- Your template -->
</template>

<script>
export default {
  async asyncData({ app, route }) {
    const story = await app.$storyapi.get(`cdn/stories/${route.path}`)

    return {
      story
    }
  }
}
</script>

Languages

The Router will automaticly detect if you use multiple language. If you have multiple languages, the router will use an optional dynamic parameter on each route. The dynamic parameter is optional, so if no language is specified the default languag can be used.

const router = new VueRouter({
  routes: [
    // dynamic segments start with a colon
    { path: '/:lang?/about', component: ContentType }
  ]
})

Development

  1. Clone this repository
  2. Install dependencies using yarn install or npm install
  3. Start development server using npm run dev

License

MIT License

Copyright (c) WONDROUS LTD