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-sproutimport 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
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-queryimport sqlGraphQuery from 'sql-graph-query';
db.graphQuery = sqlGraphQuery;
let result = await db.graphQuery`
users {
lastname
firstname
cars {
license
}
}
`;
npm i sql-graph-query
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-apiimport { getTeams } from 'vttl-api';
let teams = await getTeams({ club: 'lk052' });
npm install vttl-api