ostrio:flow-router-extra

v3.6.2Published 5 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Donate Gitter GitHub issues GitHub forks GitHub stars Twitter

FlowRouter Extra

Carefully extended flow-router package.

Features:

Install

meteor add ostrio:flow-router-extra

ES6 Import

1import { FlowRouter } from 'meteor/ostrio:flow-router-extra';
2// Full list of available classes and instances:
3// { FlowRouter, Router, Route, Group, Triggers, BlazeRenderer, RouterHelpers }

Usage

1import { FlowRouter } from 'meteor/ostrio:flow-router-extra';
2
3FlowRouter.route('/', {
4  name: 'index',
5  action() {
6    // Render a template using Blaze
7    this.render('templateName');
8
9    // Can be used with BlazeLayout,
10    // and ReactLayout for React-based apps
11  }
12});
13
14// Create 404 route (catch-all)
15FlowRouter.route('*', {
16  action() {
17    // Show 404 error page using Blaze
18    this.render('notFound');
19
20    // Can be used with BlazeLayout,
21    // and ReactLayout for React-based apps
22  }
23});

Documentation

Support this project:

This project wouldn't be possible without ostr.io.

Using ostr.io you are not only protecting domain names, monitoring websites and servers, using Prerendering for better SEO of your JavaScript website, but support our Open Source activity, and great packages like this one could be available for free.