Giter Club home page Giter Club logo

saber.js's Introduction

Saber.js

NPM version NPM downloads CircleCI chat

Saber.js is a minimalistic framework for building static website using Vue.js.

Table of Contents

How to use

Setup

Install it in your project:

# cd into your project
yarn add saber --dev

Configure npm scripts:

{
  "scripts": {
    "dev": "saber dev",
    "build": "saber build"
  }
}

By default it uses . as base directory, to use another directory you can change it to saber dev path/to/directory and saber build path/to/directory.

After that, the file-system is the main API. Every .vue file becomes a route that gets automatically processed and rendered.

Populate ./pages/index.vue inside your project:

<template>
  <div>Welcome to saber.js</div>
</template>

And then just run npm run dev or yarn dev and go to http://localhost:4000.

To generate a static website for production, run npm run build or yarn build and you're all set. The generated website will be available at .saber/website directory which can be directly deployed to GitHub pages or Netlify et al.

So far you got:

  • Automatic assets transforms
  • Hot reloading for Vue components
  • Static files inside ./static are mapped to /

Transforms

Most common transforms and transpilers are supported out-of-the-box.

  • postcss: Enabled when you have a postcss config file like postcss.config.js
  • babel: Enabled by default with a sensible default preset, you can override it by populating a babel config file at project root.
  • sass scss less stylus: Supported by default but you need to install relevant dependencies, e.g. for sass you need to install node-sass and sass-loader in your project.
  • Images and fonts.

Serve static files

Files inside ./static folder will be mapped to root path /, e.g. ./static/favicon.ico is served at /favicon.ico.

Fetching data

You can pre-fetch data at compile time and use it in route components, this is achieved by using custom block <saber> in Vue single-file component.

๐Ÿ“ pages/index.vue:

<template>
  <div>{{ post.title }}</div>
</template>

<saber>
import axios from 'axios'

export default {
  async data() {
    const { data: post } = await axios
      .get('https://jsonplaceholder.typicode.com/posts/1')

    return {
      post
    }
  }
}
</saber>

The data method exported from <saber> block should return an object or a Promise which resolves to an object. Then the resolved value will be merged with your component's own data.

For syntax higlighting of the custom block, vetur comes to the rescue if you're using VSCode.

Dynamic route

It's common to use route like /user/:id to map routes with the given pattern to the same component, URLs like /user/foo and /user/bar will both map to the same route.

When it comes to statically generated website, we need to know the actual URLs instead of path patterns like /user/:id.

In Saber.js, a file path like user/[id].vue will be mapped to path pattern /user/:id, then you can again use <saber> block to provide the value you want for :id:

๐Ÿ“ pages/user/[id].vue:

<template>
  <div>Hi {{ $route.params.id }}</div>
</template>

<saber>
export default {
  params() {
    return [
      { id: 'egoist' },
      { id: 'chelly' }
    ]

    // Or just a single page
    // return { id: 'egoist' }
  }
}
</saber>

Manipulating <head>

You can use head option in all Vue components to control tags inside <head> and attributes for <html> <body> tags:

๐Ÿ“ any-component.vue:

<script>
export default {
  head: {
    title: 'My Website'
  }
}
</script>

It's actually using vue-meta under the hood.

App-level enhancement

You may want to inject some global stylesheets or modify options for root Vue instance, create a saber.app.js in root directory and it will automatically be picked up:

import Vue from 'vue'
import './styles/global.css'

// Maybe add some Vue plugin?
// Vue.use(YourPlugin)

// Optionally export a function
// To handle stuffs like rootOptions, router
export default ({ rootOptions, router }) => {
  // Do something...
}

Plugins

Use a plugin

Inside the saber.config.js:

module.exports = {
  plugins: {
    // Use saber-plugin-foo with options: {}
    'foo': {},
    // Or full package name
    'saber-plugin-bar': {}
    // Or a local plugin
    './my-plugin': {}
  }
}

Write a plugin

module.exports = opts => {
  return {
    name: 'plugin-name',
    apply(api) {
      // Handle Plugin API
    }
  }
}

Check out existing plugins for references.

Recipes

Writing client-only code

Client-only components

Wrap non SSR friendly components inside <client-only> component:

<template>
  <div>
    <client-only>
      <some-client-only-component />
    </client-only>
  </div>
</template>

Client-only logic

Using process.browser for client-only logic:

if (process.browser) {
  console.log('you see me on the client-side only')
}

Adding a progress bar

Populate a saber.app.js in project root:

// Don't forget to install `nprogress`
import progress from 'nprogress'
import 'nprogress/nprogress.css'

export default ({ router }) => {
  router.beforeEach((to, from, next) => {
    progress.start()
    next()
  })

  router.afterEach(() => {
    progress.done()
  })
}

Progressive web app

Currently all generated files are cached by service worker by default, you can use set pwa in saber.config.js to disable it:

module.exports = {
  pwa: false
}

More improvements for better PWA support are coming soon, PR welcome too :)

Google analytics

Set googleAnalytics to your track id in saber.config.js to enable it:

module.exports = {
  googleAnalytics: 'UA-XXX-XX'
}

FAQ

How does it compare to Nuxt.js/VuePress/Peco?

See #1.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

saber ยฉ EGOIST, Released under the MIT License.
Authored and maintained by EGOIST with help from contributors (list).

egoist.moe ยท GitHub @EGOIST ยท Twitter @_egoistlily

saber.js's People

Contributors

egoist avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.