1.4.0 • Published 7 months ago

@sergiogc9/nodejs-server v1.4.0

Weekly downloads
96
License
-
Repository
github
Last release
7 months ago

NodeJS Server

npm.io npm.io

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();

HTTPS and SSL certificates

The server supports HTTPS enabling the option enableHTTPS with multiple domains. It is fully compatible with LetsEncrypt and certbot but also with custom SSL certificates.

Once HTTPS is enabled, the server detects the domain in each request and tries to find a SSL certificate. If the certificate does not exist, it uses an untrusted temporary SSL certificate valid for 1 day.

Valid SSL certificates must be provided, using LetsEncrypt or another provider.

Using LetsEncrypt

Install the certbot following the instructions here. Then run the server with the enableHTTPS option as true and with the port set to 443.

When the server is running, just add the certificate into the server:

sudo certbot certonly --webroot --keep-until-expiring --agree-tos -w $ABSOLUTE_PATH/letsencrypt -d DOMAIN

ℹ️ $ABSOLUTE_PATH is the path where the server is located. It will create a letsencrypt directory.

The server automatically adds the necessary routes needed for letsencrypt to validate the server. Once the certificate is generated, restart the server.

Using custom SSL certificates

If using LetsEncrypt is not an option, you can provide your custom certificates using the sslCertificatesDirectory option. The option must have the path for a directory where the certificates are placed following this structure:

Configuration options

Common options
OptionDescriptionTypeDefault
portThe port to used by the server.number4000
mongoUriThe mongo uri used to connect to the database. If not provied, no connection is done.string
authObject containing the HTTP authentication config if wanted. users is an object with all users and passwords. realm must be a unique identifier for the server.{users: { user: string: string },realm: string }
enableSSLUse HTTP server. Requires using LetsEncrypt or providing custom SSL certificates.booleanfalse
redirectToHTTPSRedirect from HTTP to HTTPS automatically when HTTPS is enabled. If enabled, the server will always listen on port 80 for HTTP requests.booleantrue
sslCertificatesDirectoryThe directory which contains the SSL certificates for the domains. It must contain a folder for each domain with fullchain.pem and privkey.pem files in each.string/etc/letsencrypt/live/
enableRateLimiterEnables rate limiter to avoid DDoS and brute force attacksbooleanfalse
Static server options
OptionDescriptionTypeDefault
staticSourcesArray 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 , auth?: HTTPAuthConfig }[]required
API server options
OptionDescriptionTypeDefault
apiPathThe base endpoint path where the API is served.string/api/
apiCorsValid CORS used in the API. Each origin can be a string or a RegExp. If not provided, CORS is not enabled.string[]
openApiPathDirectory where the openapi files are located. If not provided, swagger based docs is not served and the openapi automatic validation is not enabled.string
apiRoutesThe 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
OptionDescriptionTypeDefault
ssrApiPathThe base endpoint path where the API is served.string/ssr/
ssrApiCorsValid CORS used in the API. Each origin can be a string or a RegExp. If not provided, CORS is not enabled.string[]
ssrPublicPathThe 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
ssrApiRoutesThe routes to be served in the API. Each path should have a valid express Router instance.{ path: string, router: Router }[]required
Proxy server options
OptionDescriptionTypeDefault
proxyPathsAn 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.

OptionDescriptionTypeDefault
enableStaticWebEnable or disable static web server.booleanfalse
enableApiEnable or disable the API.booleanfalse
enableSSRApiEnable or disable the SSR based API.booleanfalse
enableProxyEnable or disable the proxy server.booleanfalse