springernature / shunter

A Node.js application built to read JSON and translate it into HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shunter

Shunter is a Node.js module built to read JSON and translate it into HTML.

It helps you create a loosely-coupled front end application which can serve traffic from one or more back end applications — great for use in multi-language, multi-disciplinary teams, or just to make your project more flexible and future-proofed.

Shunter does not contain an API client, or any Controller logic (in the MVC sense). Instead, Shunter simply proxies requests to a back end server, then:

  1. If the back end wants Shunter to render the response, it returns the application state as JSON, served with a certain HTTP header. This initiates the templating process in Shunter. Diagram of Shunter intercepting a JSON backend reply

  2. If the back end wishes to serve the response, it omits the header and Shunter proxies the request back to the client. Diagram of Shunter proxying a backend reply

  3. Shunter is also able to serve resources like CSS, JS, or images bundled with the templates as part of your application. Diagram of Shunter serving a bundled asset

NPM version Node.js version support Build status LGPL-3.0 licensed

Key features

  • Allows the creation of templates loosely coupled to the underlying back end applications.
  • Enables multiple back end applications to use the same unified front end.
  • Makes full site redesigns or swapping out back end applications very easy.
  • Completely technology-agnostic; if your application outputs JSON, it can work with Shunter.
  • Asset concatenation, minification, cache-busting, and other performance optimisations built-in.
  • Can output any type of content you like, e.g. HTML, RSS, RDF, etc.
  • Well-tested and supported, serving Scientific American as well as many high-traffic sites across the Springer Nature portfolio.

Getting started

You can find all the details about how to use Shunter in our documentation. If you're new to Shunter, we recommend reading the Getting Started Guide. This will teach you the basics, and how to create your first Shunter-based application.

Requirements

Shunter requires Node.js 10+ to run. You can find instructions for Windows, macOS and Linux below.

See the Getting started documentation for more information on Shunter's requirements.

Windows

On Windows 10, download a pre-built package from the Node.js website.

macOS

To install Node.js you can use the Node Version Manager (nvm) tool:

nvm install node

Alternatively, you can install the required dependency using Homebrew:

brew install node

You can also download pre-built packages from the Node.js website.

Linux

To install Node.js you can use the Node Version Manager (nvm) tool:

nvm install node

Depending on your flavour of Linux, you may also be able to use a package manager to install the required dependency.

Alternatively, download pre-built packages from the Node.js website.

Support and migration

We maintain a support guide which documents the major versions and their support levels.

We aim to support old major versions of Shunter for 6 months after a new major version is released. This means that security issues and bugs will be fixed whenever feasible.

If you'd like to know more about how we support our open source projects, including the full release process, check out our support practices document.

If you're migrating between major versions of Shunter, we maintain a migration guide to help you.

Contributing

We'd love for you to contribute to Shunter. We maintain a guide to help developers get started with working on Shunter itself. It outlines the structure of the library and some of the development practices we uphold.

We also label issues that might be a good starting-point for new developers to the project.

License

Shunter is licensed under the Lesser General Public License (LGPL-3.0).

Copyright © 2022, Springer Nature

About

A Node.js application built to read JSON and translate it into HTML

License:GNU Lesser General Public License v3.0


Languages

Language:JavaScript 98.4%Language:CSS 1.0%Language:HTML 0.5%Language:EJS 0.1%Language:SCSS 0.0%