react-sprout logo

react-sprout

A better router for React applications.

A router for React applications that fully adheres to web standards and React concepts, to achieve a simple and minimal API.

Read the docs npmjs.com/package/react-sprout
import Routes from 'react-sprout';

  let Router = Routes(
    <App path="app">
        <Home />
        <Admin path="admin">
            <Users path="users" />
            <Posts path="content/posts" />
        </Admin>
    </App>,
  );
npm install react-sprout
sql-graph-query logo

sql-graph-query

Graph query for SQLite.

A really tiny query runner for SQLite with no dependencies. Retrieve data from your database with GraphQL-like queries.

View on npm npmjs.com/package/sql-graph-query
import sqlGraphQuery from 'sql-graph-query';

db.graphQuery = sqlGraphQuery;

let result = await db.graphQuery`
    users {
        lastname
        firstname
        cars {
            license
        }
    }
`;
npm i sql-graph-query
vttl-api logo

vttl-api

A javascript library to interface with the VTTL table tennis API.

Maps the official TabT API onto a small set of functions — clubs, teams, players, divisions, rankings, matches and tournaments — with no dependencies.

View on npm npmjs.com/package/vttl-api
import { getTeams } from 'vttl-api';

let teams = await getTeams({ club: 'lk052' });
npm install vttl-api