@sergiogc9/nodejs-server

NodeJS Typescript Server

Usage no npm install needed!

<script type="module">
  import sergiogc9NodejsServer from 'https://cdn.skypack.dev/@sergiogc9/nodejs-server';
</script>

README

NodeJS Server

A NodeJS server using Typescript. This server is used by myself in other personal projects.

It is an easy to setup nodejs based server which allows to start different kind of services that can be run isolated or together in a unique server instance:

  • Serving static files located in a directory. Useful to serve a SPA (Single Page Application) in React, Angular, etc.
  • Serving an API using cluster, express, mongoose, openapi, swagger and others.
  • Serving an API based website using SSR (Server Side Rendering) with express and EJS.
  • Working as a single entry point in a server using Proxy and / or reverse proxy.
  • Executing extra nodeJs code in cluster by using the NodeJS cluster API.

Table of Contents

Getting started

To start using the server, install the package from npm, which comes with all needed types defined:

yarn add -S @sergiogc9/nodejs-server or npm install --save @sergiogc9/nodejs-server.

Then you can import, instantiate and start a new server:

import Server from '@sergiogc9/nodejs-server';

const server = new Server();
server.start();

ℹ️ The server instantiated above will result in a useless server, because all options are disabled by default. See docs below for further information.

Usage

Depending on the requirements, you can import a different Server class from the package. All servers types receive a config object that varies for each type. Once instantiated, they have two different methods to start the server:

  • start(startFn): Runs the server in a single process (as default in NodeJS). It runs the function startFn if passed.

  • startCluster(masterFn, workerFn): Runs the server using multiple processes using the cluster API. If passed, the master process will execute masterFn and all worker processes will run the workerFn. By default, there is 1 master process and N worker processes determined by the result length of executing os.cpus() using the OS API. Using a cluster is useful, for example, to load balance the requests to the API using all available CPUs.

Full server

The full server has all features enabled. Useful if you need more than one type of server together. It is the default exported element of the package. A sample example if static, API and proxy features are wanted:

import path from 'path';
import Server from '@sergiogc9/nodejs-server';

import router from './api/routes/Router';

const proxyPaths = [{ from: '/netdata', to: 'http://localhost:19999' }];

const server = new Server({
    // Static
    enableStaticWeb: true,
    staticSources: [{ folder: path.join(__dirname, './static/public'), path: '/public' }],

    // Api
    enableApi: true,
    apiPath: '/api/',
    openApiPath: path.join(__dirname, './api/openapi/openapi.yaml'),
    apiRoutes: [{ path: '/', router }],

    // Proxy
    enableProxy: true,
    proxyPaths: proxyPaths
});

server.start();

It accepts all configuration options for other servers defined below.

Static web server

The StaticServer only allows to serve content located in a directory. It is configured to serve a SPA web application, which means it is able to handle SPA url paths.

Example:

import path from 'path';
import { StaticServer } from '@sergiogc9/nodejs-server';

const server = new StaticServer({
    // The directory where the build to serve is located
    staticSources: [{ folder: path.join(__dirname, './static/public'), path: '/public' }]
});

server.start();

API Server

The ApiServer allows to serve an API using express. The only required configuration option is an array of paths handled by a custom Router instance which should handle them. Also it can be optionally configured with:

  • Enabling CORS to improve security.
  • Change API base path (by default is /api/).
  • Enable OpenApi and Swagger. If enabled, a docs page is turned on in /docs path, also request parameters and response are automatically validated using the OpenApi schema specified.

Example:

import path from 'path';
import { ApiServer } from '@sergiogc9/nodejs-server';

// Import custom router from somewhere
import router from './api/routes/Router';

const server = new ApiServer({
    apiPath: '/api/',
    openApiPath: path.join(__dirname, './api/openapi/openapi.yaml'),
    apiRoutes: [{ path: '/', router }]
});

server.start();

Server Side Rendering (SSR) server

The SSRApiServer allows to serve a server side rendering based website using express and ejs. The only required configuration options are an array of paths handled by a custom Router instance which should handle the requests and the directory path where all page templates are defined. Also it can be optionally configured with:

  • Enabling CORS to improve security.

  • Change API base path (by default is /web/).

  • Set a "public" directory where to locate static assets only related to the SSR content.

    ⚠️ The content in this directory will be served under the SSR path. You can use the static server option instead.

ℹ️ By default, a predefined error page is used if some error happen (404, 500, etc). To overwrite the error page, a template inside the views directory has to be set in path pages/error.ejs.

Example:

import path from 'path';
import { SSRApiServer } from '@sergiogc9/nodejs-server';

// Import custom router from somewhere
import router from './api/routes/Router';

const server = new SSRApiServer({
    ssrApiPath: '/web',
    ssrViewsPath: path.join(__dirname, './views'),
    ssrPublicPath: path.join(__dirname, './public'),
    ssrApiRoutes: [{ path: '/', router }]
});

server.start();

Proxy server

The ProxyServer allows to define some proxy rules using reverse proxies. It can be used as a single entry point to redirect requests to other server instances inside the same machine, network, etc.

Use the hostname option inside each path to make a specific proxy rule to work only with an specific hostname (DNS domain).

Example:

import { ProxyServer } from '@sergiogc9/nodejs-server';

const proxyPaths = [
    { from: '/netdata', to: 'http://localhost:19999' },
    { from: '/private', to: 'http://10.0.1.10:3000' }
];

const server = new ProxyServer({
    proxyPaths: proxyPaths
});

server.start();

Configuration options

Common options
Option Description Type Default
port The port to used by the server. number 4000
mongoUri The mongo uri used to connect to the database.
If not provied, no connection is done.
string
Static server options
Option Description Type Default
staticSources Array of sources containing static content. The folder is the directory where static web files are located and the path is the base endpoint path where the static content is served. { folder: string, path: Router }[] required
API server options
Option Description Type Default
apiPath The base endpoint path where the API is served. string /api/
apiCors Valid CORS used in the API. Each origin can be a string or a RegExp.
If not provided, CORS is not enabled.
string[]
openApiPath Directory where the openapi files are located.
If not provided, swagger based docs is not served and the openapi automatic validation is not enabled.
string
apiRoutes The routes to be served in the API. Each path should have a valid express Router instance. { path: string, router: Router }[] required
Server side server options
Option Description Type Default
ssrApiPath The base endpoint path where the API is served. string /ssr/
ssrApiCors Valid CORS used in the API. Each origin can be a string or a RegExp.
If not provided, CORS is not enabled.
string[]
ssrPublicPath The path where public content for SSR is located. The assets will be served behind the /public path after ssrApiPath. If not set not public assets will be served. string
ssrApiRoutes The routes to be served in the API. Each path should have a valid express Router instance. { path: string, router: Router }[] required
Proxy server options
Option Description Type Default
proxyPaths An array with all the proxies data. If hostname is provided, the proxy only will work if the request comes from this hostname. { from: string, hostname?: string, to: string }[] required
Full server options

This options tells the full Server which specific server features should be enabled.

Option Description Type Default
enableStaticWeb Enable or disable static web server. boolean false
enableApi Enable or disable the API. boolean false
enableSSRApi Enable or disable the SSR based API. boolean false
enableProxy Enable or disable the proxy server. boolean false