@gwcdata/node-server-engine
v1.0.7
Published
Framework used to develop backend services. This package ships with a lot of features to standardize the creation of services, letting you focus on the business logic.
Downloads
514
Keywords
Readme
GWC Server Engine
Framework used to develop GWC backend services. This package ships with a lot of features to standardize the creation of services, letting you focus on the business logic.
- GWC Server Engine
Install
To start a new service, it is highly recomended that you clone it from our template. It will already include all the necessary tools and boilerplate.
If you need to install it manually:
npm i @gwcdata/node-server-engine
Entities
Server
The server class encapsulates all of the express boilerplate. Instantiate one per service and initialize it to get started.
import { Server } from '@gwcdata/node-server-engine';
const server = new Server(config);
server.init();
Server Configuration
| Property | Type | Behavior | Default |
| ----------------- | ------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ |
| port | Number | Port to listen to | process.env.PORT
|
| endpoints | Array<Endpoint> | List of endpoints that should be served. | [] |
| globalMiddleware | Array<Function> Array<{middleware: Function, path: String}> | List of middlewares that should be executed for each endpoint's logic. If it is given as an object with a path, it will only be applied to requests with this base path. | [] |
| errorMiddleware | Array<Function> Array<{middleware: Function, path: String}> | List of middlewares that should be executed after each endpoint's logic. If it is given as an object with a path, it will only be applied to requests with this base path. | [] |
| initCallbacks | Array<Function> | List of functions that are called on server start |
| [] |
| syncCallbacks | boolean | Forces the init callbacks to run one after the other and not in parallel |
| false |
| cron | Array<Object> | List of cronjob that are called on server start | [] |
| shutdownCallbacks | Array<Function> | List of functions that are called on server shutdown | [] |
| checkEnvironment | Object | Schema against which verify the environment variables, will cause server termination if the environment variables are not properly set. | {} |
| webSocket.server | Object | Settings to create a WebSocket server. See the ws package documentation for details. | |
| webSocket.client | Object | Settings passed down to SocketClient when a new socket connection is established. | |
Endpoint
Endpoint encapsulates the logic of a single endpoint in a standard way.
The main function of the endpoint is called the handler. This function should only handle pure business logic for a given endpoint.
An endpoint usually has a validator. A validator is a schema that will be compared to the incoming request. The request will be denied if it contains illegal or malformed arguments. For more detail see the documentation of the underlying package express-validator.
import { Endpoint, EndpointMethod } from '@gwcdata/node-server-engine';
// A basic handler that returns an HTTP status code of 200 to the client
function handler(req, res) {
res.sendStatus(200);
}
// The request must contain `id` as a query string and it must be a UUID V4
const validator = {
id: {
in: 'query',
isUUID: {
options: 4
}
}
};
// This endpoint can be passed to the Server
new Endpoint({
path: '/demo',
method: EndpointMethod.GET,
handler,
validator
});
Endpoint Configuration
new Endpoint(config)
| Property | Type | Behavior | Default | | --------------- | --------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | ------------- | | path | String | Path to which the endpoint should be served | required | | method | Method | Method to which the endpoint should be served | required | | handler | Function | Endpoint handler | required | | validator | Object | Schema to validate against the request. See documentation for more details. | | | authType | AuthType | Authentication to use for this endpoint | AuthType.NONE | | authParams | Object | Options specific to the authentication methods | {} | | files | Array<Object> | Configuration to upload files. See the specific documentation. | {} | | middleware | Array<Function> | List of middlewares to run before the handler. | [] | | errorMiddleware | Array<Function> | List of middlewares to run after the handler | [] |
const addNodeEndpoint = new Endpoint({
path: '/note',
method: EndpointMethod.POST,
handler: (req, res, next) => res.json(addNote(req.body)),
authType: EndpointAuthType.AUTH_JWT,
middleware: [migrateNoteToVersion2],
errorMiddleware: [addNoteErrorMiddleware],
validator: {
id: {
in: 'body',
isUUID: true
},
content: {
in: 'body',
isLength: {
errorMessage: 'content to long',
options: {
max: 150
}
}
}
}
});
Methods
The following HTTP methods are supported
- Method.GET
- Method.POST
- Method.PUT
- Method.PATCH
- Method.DELETE
- Method.ALL - respond to all requests on a path
Authentication
Endpoints can take an authType and authParam in their configuration to determine their authentication behavior. The following table summarizes their usage.
The server engine exposes an enumeration for auth types.
import {AuthType} from '@gwcdata/node-server-engine';
| AuthType | Description | AuthParams |
| --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| AuthType.NONE | No authentication. All requests are handled | |
| AuthType.JWT | A valid JSON Web Token is required as Bearer token. To be valid it must be properly signed by auth0, and its payload must match with what is set as environment variables.The user's ID is added to req.user
. | |
| AuthType.TLS | Authenticate through mutual TLS. CA and an optional list of white listed host names should be set in the environment variables. | whitelist [Array]: List of certificate Common Name or Alt Name that are permitted to make requests to this endpoint. |
| AuthType.HMAC | Authenticate with a signature in the payload.This authentication is deprecated and should be avoided | secret [String]: Overrides the secret used for signatures set in environment variablesisGithub [Boolean]: The request is a Github webhook and therefore uses their signature system and not the default one. |
| AuthType.STATIC | A valid shared Bearer token is required. Shared token is stored in env variable (STATIC_TOKEN) | |
| AuthType.ADMIN | A valid JSON Web Token is required as Bearer token. To be valid it must be properly signed by admin api, and its payload must match with what is set as environment variables.The user's email and permission is added to req.user
. | permission [String]: Endpoint permission required for admin user |
File Upload
An endpoint can upload a file to a cloud storage and pass down its url to the handler.
The request must be made as multipart/form-data
.
The file's data will be available at req.files
.
The following settings can be used on each object the Endpoint's options.files
.
| Property | Type | Description | Default |
| ------------------- | -------------- | ------------------------------------------------------------------------ | ------------ |
| key | string | Form key as which the file should be fetched | required |
| path | string | Base path of the directory where the file should be stored in the bucket | /
|
| bucket | string | Name of the bucket in which the file should be stored | required |
| maxSize | string | Maximum file size in a human readable format (ex: 5MB) | required |
| mimeTypes | Array<string> | A list of accepted MIME Types | [] |
| required | boolean | Will fail the request and not store the files if this one is missing | false |
| noExtension | boolean | Store the file with no extension | false |
| image | Object | Image manipulation to perform on the uploaded file | |
| image.resize.height | number | Resize the image to fit a specific height | |
| image.resize.width | number | Resize the image to fit a specific width | |
| image.quality | number | JPEG quality factor to use for export | |
Gemini File Upload
An endpoint can upload a file to a google gemini AI
The request must be made as multipart/form-data
.
File should be uploaded under the key file.
The file's data will be available at req.body.fileUri req.body.mimeType req.body.fileName
Socket Client
The socket server start if the Server's webSocket option is not undefined.
Each time a new socket connection is established, a new instance of SocketClient
is created.
Socket Client Options
Options can be set for SocketClient when setting up a Server instance.
| Parameter | Type | Description | Default | | ----------------- | ------------------------------------------ | ----------------------------------------------------------------------- | ------------ | | handlers | Array<MessageHandler> | A list of message handlers to use | required | | authCallbacks | Array<function> | Callbacks called when a client successfully authenticates on the socket | [] | | initCallbacks | Array<function> | Callbacks called when the socket client is created | [] | | shutdownCallbacks | Array<function> | Callbacks called when the socket client is destroyed | [] |
Properties
| Property | Type | Description | | ------------- | ------- | ---------------------------------------------------------------------------------------------------------------------- | | id | String | A unique identifier for the connection | | ws | Object | The socket being used. Instance of WebSocket | | authenticated | Boolean | Flag indicating that the current user is authenticated | | userId | String | Id of the current user (available when authenticated) |
Message Handler
Message handler are similar to Endpoint, but in a WebSocket context. They define how incoming messages should be handled.
import { MessageHandler, Server } from '@gwcdata/node-server-engine';
function handler(payload, client) {
// payload is the message payload in a standard message.
// client is an instance of SocketClient
}
const messageHandler = new MessageHandler(type, handler, options);
new Server({
webSocket: { client: { handlers: [messageHandler] } }
});
| Argument | Type | Description | Default |
| --------------------- | ------------------------------------------------------------------------------------ | ------------------------------------------------------- | ------------ |
| type | String | The message type that should be handled | required |
| handler | Function | A function that will run for every message of this type | required |
| options.authenticated | A flag indicating that this kind of message handling require an authenticated client | true
|
Redis
The server engine exposes a Redis client that is configured to work with the standard environment variables that are used in our services.
It is a pre-configured instance of ioredis. See the package documentation for more details.
import { Redis } from '@gwcdata/node-server-engine';
await Redis.set(key, value);
It can be configured through environment variables
| env | description | default | | -------------- | ---------------------------------------------------------------------------------- | ------- | | REDIS_HOST | Host to which to connecto to | | | REDIS_PORT | Port on which redis is served | | | REDIS_PASSWORD | Password used to authenticate with the server | | | REDIS_CLUSTER | Flag indicating that redis is configured as a cluster and not as a single instance | false |
Sequelize
The server engine exposes an SQL ORM that is configured to work with the standard environment variables that are used in our services.
It is a pre-configured instance of sequelize. See the package documentation for more details.
import { Sequelize } from '@gwcdata/node-server-engine';
Sequelize.sequelize;
Sequelize.closeSequelize();
It can be configured through environment variables
| env | description | default | | ------------ | ------------------------------------------------- | -------- | | SQL_HOST | Host to which connect to | | | SQL_PORT | Port on which SQL is served | 5432 | | SQL_PASSWORD | Password used to authenticate with the SQL server | | | SQL_USER | User used to authenticate with the SQL server | | | SQL_DB | Database to which connect to | | | SQL_TYPE | SQL type which connect to | postgres |
Pub/Sub
The engine exposes a PubSub
entity that can be used to communicate with Google Cloud Pub/Sub.
import { PubSub } from '@gwcdata/node-server-engine';
/**
* Declare that the service will be publishing to a topic
* This must be done before init() is called
* Any attempt to publish a message without declaring a topic first will fail
* @property {string|Array.<string>} topic - The topic(s) to which we will be publishing
*/
PubSub.addPublisher(topic);
/**
* Binds a message handle to a subscription
* If called multiple times, handlers will be chained
* This must be done before init() is called
* The subscription will not be consumed until init() is called
* @property {string} subscription - The subscription to consume
* @property {function|Array.<function>} handler - The message handling function(s)
* @property {boolean} [first] - Puts the handler(s) at the beginning of the handling chain (default: false)
*/
PubSub.addSubscriber(subscription, handler, first);
/**
* Establish connection with all the declared publishers/subscribers
*/
await PubSub.init();
/**
* Send a message through a previously declared publisher
* @property {string} topic - The name of the topic to which the message should be pushed
* @property {Object} message - The actual message (will be JSON stringified)
* @property {Object} [attributes] - Message attributes
* @property {string} [orderingKey] - Ordering key
*/
await PubSub.publish(topic, message, attributes, orderingKey);
/**
* Flush all pending messages and close connections with Pub/Sub
*/
await PubSub.shutdown();
MediaProcessor
Communication interface with the media processing service.
import { MediaProcessor } from '@gwcdata/node-server-engine';
/**
* Listener that will be called when the media processor has finished processing a given job group
* @param {string} id - The same id as the one given in the "process" function
* @param {boolean} success - Indicates success or failure of the jobs
*/
function listener(id, success) {}
MediaProcessor.addListener(listener);
// The entity needs to initialize it's pub/sub connections
// Handlers must be declared before this function is called
await MediaProcessor.init();
/**
* Start a task with some processing jobs@
* @param {string} id - Identifier used to recognize the job when it returns
* @param {Job|Array.<Job>} - The job(s) to run
*/
await MediaProcessor.process(id, jobs);
// This should be call when the program shuts down.
await MediaProcessor.shutdown();
PushNotification
Communication interface with the push service.
import { PushNotification } from '@gwcdata/node-server-engine';
// The entity needs to initialize it's pub/sub connections
// Handlers must be declared before this function is called
await PushNotification.init();
/**
* Send a push notification through the push service
* @param {String} userId - ID of the user that should receive the notification
* @param {Object} notification - Notification that should be sent
* @return {void}
*/
await PushNotification.sendPush(userId, notification);
Localizator
The localizator exposes localization related utilities.
import { Localizator } from '@gwcdata/node-server-engine';
// The synchronize init should be called first to initialize the data
// The localizator will regularly synchronize new data after that without any calls having to be made
await Localizator.init();
// Get the different ways of displaying a user's name
const { regular, formal, casual } = await Localizator.getDisplayNames(
firstName,
lastName,
locale
);
// This should be call when the program shuts down.
await Localizator.shutdown();
| env | description | default | | ----------- | ----------------------------------------- | ------------ | | LOCALES_URL | Base URL where the locales data is stored | required |
ElasticSearch
The ElasticSearch exposes a service related to data searching.
import { ElasticSearch } from '@gwcdata/node-server-engine';
// The synchronize init should be called first to initialize the data
await ElasticSearch.init();
// This should be call when the program shuts down.
await ElasticSearch.shutdown();
| env | description | default | | ----------------------------- | ---------------------------------------------- | ------------ | | ELASTIC_SEARCH_MIGRATION_PATH | The path link to Elastic Search migration data | required | | ELASTIC_SEARCH_HOST | The elastic search host url | required | | ELASTIC_SEARCH_USERNAME | The elastic search user name | required | | ELASTIC_SEARCH_PASSWORD | The elastic search password | required | | TLS_CA | CA for ssl config when available | |
Translation Manager
The translation manager exposes translation related utilities.
import { TranslationManager } from '@gwcdata/node-server-engine';
// The synchronize init should be called first to initialize the data
// The tranlsation manager will regularly synchronize new data after that without any calls having to be made
await TranslationManager.init();
// Get the different ways of displaying a user's name
const translatedString = await TranslationManager.translate(
lang,
key,
variables,
tags
);
// Example
const translatedString = await TranslationManager.translate(
'zh-TW',
'email.invitation.body',
{ name: 'John' },
{ link: ['a', 'href="https://www.gwcdata.ai"'] }
);
// This should be call when the program shuts down.
await TranslationManager.shutdown();
- lang [String]: Locale for which the translation should be fetched (if no data is found, translation will be returned in
en-US
). - key [String]: Translation key
- variables [Object]: A key=>value mapping for variable interpolation in strings. (Optional)
- tags [Object]: A key=>value mapping for variable interpolation in strings. (Optional)
| env | description | default | | ----------- | ----------------------------------------- | ------------ | | LOCALES_URL | Base URL where the locales data is stored | required |
Error Reporting
The server engine standardizes the way errors are handled and reported. The error classes provided by the Server Engine should always be used when throwing an exception.
Errors are a crucial part of the application, they are what helps us to properly debug the program and offer support when need, as well as what exposes issues to the client.
By standard, the client receives the following body when an error happens.
// HTTP Status code (400 | 500)
{
errorCode: "some-error", // Machine readable error code
hint: "The selected user does not exist" // (optional) Hint for developers
}
Status codes should be limited to 400 for client errors and 500 for server errors. Other 4XX status codes should be avoided unless very specific cases (ex: authentication error).
All our custom error classes take a data
parameter. This will be logged on the backend and should contain any data that can help to understand the runtime context or the error (ex: user's ID).
Common options
These options are common to each of the error classes described below.
| option | definition | example | default | | -------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------------------------- | ------------------------------ | | message | A message logged on the backend only | "Could not find user in the DB" | required | | severity | The level at which this error should be logged | Severity.WARNING | Severity.CRITICAL | | data | Some data related to the error that will be logged on the backend. This should help to undetrstand the runtime context. | {userId: 'xf563ugh0', isAdmin: false} | | | error | An error object, when this is a wrapper around an existing error object | |
Severity
Severity allows us to order errors by their impact on the program. It is important to set severity correctly as backend logs can include hundreds of entries per seconds, severity allows us to filter out the most important errors. An enumeration is exposed that includes all the severity levels, as described in the following table.
Log Levels
| severity | definition | | --------- | ------------------------------------------------------------------------------------------------------------------------ | | DEBUG | Detailed information of the runtime execution. Used for debugging. | | INFO | Base information level of runtime information. | | WARNING | Errors that are expected to happen and do not cause any particular issue. (ex: a client made an unauthenticated request) | | CRITICAL | Errors that are unexpected and cause an improper behavior. (ex: failed to store some data in the DB) | | EMERGENCY | Errors that prevent the program from running. (ex: some environment variables are not correctly set) |
EngineError
This error class represents errors that happen withing the Server Engine. They should be used for server configuration errors, or unexpected behaviors. They will always return 500 - {errorCode: 'server-error'}
.
import { EngineError, Severity } from '@gwcdata/node-server-engine';
if (!process.env.IMPORTANT_VARIABLE) {
throw new EngineError(options);
}
Engine Errors strictly follow the common options.
WebError
This error class represents errors that happen at runtime and that need specific reporting to the client. Their definition is more complex, but it includes additional data specific to the client.
import { WebError, Severity } from '@gwcdata/node-server-engine';
const user = User.findOne({ where: { id: userId } });
if (!user) {
throw new WebError(options);
}
In addition to the common options, WebError defines some other options specific for error reporting to clients.
| option | definition | example | default | | ---------- | ---------------------------------------------------------------- | ------------ | ------------ | | errorCode | A machine readable error code that will be parsed by the client. | unknown-user | required | | statusCode | HTTP status code of the response. | 400 | 500 | | hint | A human readable error message that is intended for developers | |
Middlewares
Server engine exposes a bunch of middlewares. These can be imported to your project and used globally or per endpoint.
Swagger Docs
This middleware allows the service to connect with the API Documentation Service. It exposes the necessary endpoint for the documentation of this API to be visible by the Documentation Service.
import { Server, middleware } from '@gwcdata/node-server-engine';
new Server({
globalMiddleware: [middleware.swaggerDocs()]
});
Structuring Documentation
The underlying system used is the Open API spec. Most of the data is already generate by the documentation service. The only real need is to document endpoints.
Endpoints should be documented in YAML files that respect the **/*.docs.yaml
convention. It is recommended to place them in the same directory as the endpoint definition. Endpoint documentation has to follow the path object spec from Open API.
/hello:
get:
description: Request the API to say Hello
responses:
'200':
description: Replies hello
content:
application/json:
schema:
type: Object
properties:
says:
type: string
example: Hello
Schemas and Responses
To avoid repeating the same structure across the documentation manually, one can use schemas and responses components.
Some common components are already defined directly in the API Documentation Service, please check its documentation to avoid repeats.
If you ever need to declare custom components, they simply must follow the architecture bellow.
# Repository root
/src
/docs
/responses
- coolResponse.yaml
/ schemas
- bestSchema.yaml
Here is an example definition:
Dog:
type: object
properties:
name:
type: string
example: Rex
owner:
type: string
example: f1982af0-1579-4c56-a138-de1ab4ff39b3
isAGoodBoy:
type: boolean
example: true
required:
- name
- owner
User Resolver
/!\
Must be used in combination with AuthType.JWT
Resolves the user making the request with the user resolver. The user's complete data is added to req.user
.
import { Endpoint, middleware, AuthType, Method } from '@gwcdata/node-server-engine';
new Endpoint({
path: '/hello',
method: Method.GET,
authType: AuthType.JWT,
middleware: [middleware.userResolver],
handler: (req, res) => {
res.json({ say: `Hello ${req.user.firstName}` });
}
});
Utilities
The server engine ships with a handful of utility functions that are commonly used by servers
Request
This function is a wrapper around axios. It adds proper error handling for reporting in the logs when a network call fails. It should be used for any requests made by a service. Refer to the axios documentation for the request configuration.
import { request } from '@gwcdata/node-server-engine';
const { data } = await request({
method: 'get',
url: 'https://www.google.com'
});
TLS Request
This function is a wrapper around request. It adds the necessary configuration to easily make requests with TLS. The settings used are based on the environment variables. It will use request specific certificate/key if defined, or will fallback to use the same ones as the ones used for the server.
It is necessary to use this function when calling other services in the cluster. Requests could fail otherwise as the common CA is not set and the client certificate not exposed.
import { tlsRequest } from '@gwcdata/node-server-engine';
const { data } = await tlsRequest({
method: 'get',
url: 'https://www.google.com'
});
TLS Config
The server's TLS configuration can be fetched as an object. Alternatively, the server engine also exposes an HTTPS Agent. They will not be available at startup, so it is important that the function calling them loads them first if they are not present.
import {tlsConfig, httpsAgent, loadTlsConfig} from '@gwcdata/node-server-engine';
import https from 'https';
// TLS Config
if(!tlsConfig) loadTlsConfig();
const customAgent = new https.Agent({
key: tlsConfig.key,
cert: tlsConfig.cert,
ca: tlsConfig.ca,
passphrase: tlsConfig.passphrase,
});
// HTTPS Agent
if(!httpsAgent) loadTlsConfig();
https.request('https://www.google.com'. {agent: httpsAgent});
Send Push Notification
Send a push notification through the push service.
import { sendPush } from '@gwcdata/node-server-engine';
await sendPush(userId, notification);
| parameter | description | | ------------ | ------------------------------------------------------------------------ | | userId | ID of the user that should receive the notification | | notification | Content of the notification as defined by the push service documentation |
Send Email
Send an email through the email service.
import { sendEmail } from '@gwcdata/node-server-engine';
await sendEmail(userId, template, translationKey, parameters, tags, to);
| parameter | description | | -------------- | -------------------------------------------------------------------------- | | userId | ID of the user that should receive the notification | | template | Email template to use | | translationKey | Key used to get localized strings | | parameters | Variables that can be inserted in the email template and localized strings | | tags | Data injected in the localized strings as HTML tags | | to | Array of email recipients | | to.*.email | Email of an email recipient | | to.*.name | Name of an email recipient |
Filter
Apply a filter on an object. It returns a copy of the object that only holds the whitelisted keys.
This is particularly useful to sanitize objects before returning them to clients.
import { filter } from '@gwcdata/node-server-engine';
const object = { a: 'kept', b: 'not kept' };
const whitelist = ['a'];
const result = filter(object.whitelist);
// result = {a: 'kept'}
Database Migration
Some utilities are exposed to handle database migrations.
runPendingMigrations
will execute all the migration scripts that have not yet been executed.
rollbackMigrations
will rollback all the migrations that have been executed with the current version of the app and after.
import { runPendingMigrations } from '@gwcdata/node-server-engine';
import { rollbackMigrations } from '@gwcdata/node-server-engine';
await runPendingMigrations();
await rollbackMigrations();
Environment Variables Verification
Environment variables verification can be done through the Server's checkEnvironment setting. It is an object defining how environment variables should be verified.
import { envAssert } from '@gwcdata/node-server-engine';
export const checkEnvironment = {
ENV_VAR: envAssert.isString()
};
Assertions Available
The sever engine makes available a utility for environment variables assertions calls envAssert
. The following example shows the different assertions that are possible.
| Validator | Description |
| -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| isAfter(date]) | check if the string is a date that's after the specified date (defaults to now). |
| isAlpha(locale, options]) | check if the string contains only letters (a-zA-Z).Locale is one of ['ar', 'ar-AE', 'ar-BH', 'ar-DZ', 'ar-EG', 'ar-IQ', 'ar-JO', 'ar-KW', 'ar-LB', 'ar-LY', 'ar-MA', 'ar-QA', 'ar-QM', 'ar-SA', 'ar-SD', 'ar-SY', 'ar-TN', 'ar-YE', 'bg-BG', 'cs-CZ', 'da-DK', 'de-DE', 'el-GR', 'en-AU', 'en-GB', 'en-HK', 'en-IN', 'en-NZ', 'en-US', 'en-ZA', 'en-ZM', 'es-ES', 'fr-FR', 'fa-IR', 'he', 'hu-HU', 'it-IT', 'ku-IQ', 'nb-NO', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-BR', 'pt-PT', 'ru-RU', 'sl-SI', 'sk-SK', 'sr-RS', 'sr-RS@latin', 'sv-SE', 'tr-TR', 'uk-UA']
) and defaults to en-US
. Locale list is validator.isAlphaLocales
. options is an optional object that can be supplied with the following key(s): ignore which can either be a String or RegExp of characters to be ignored e.g. " -" will ignore spaces and -'s. |
| isAlphanumeric(locale]) | check if the string contains only letters and numbers.Locale is one of ['ar', 'ar-AE', 'ar-BH', 'ar-DZ', 'ar-EG', 'ar-IQ', 'ar-JO', 'ar-KW', 'ar-LB', 'ar-LY', 'ar-MA', 'ar-QA', 'ar-QM', 'ar-SA', 'ar-SD', 'ar-SY', 'ar-TN', 'ar-YE', 'bg-BG', 'cs-CZ', 'da-DK', 'de-DE', 'el-GR', 'en-AU', 'en-GB', 'en-HK', 'en-IN', 'en-NZ', 'en-US', 'en-ZA', 'en-ZM', 'es-ES', 'fr-FR', 'fa-IR', 'he', 'hu-HU', 'it-IT', 'ku-IQ', 'nb-NO', 'nl-NL', 'nn-NO', 'pl-PL', 'pt-BR', 'pt-PT', 'ru-RU', 'sl-SI', 'sk-SK', 'sr-RS', 'sr-RS@latin', 'sv-SE', 'tr-TR', 'uk-UA']
) and defaults to en-US
. Locale list is validator.isAlphanumericLocales
. |
| isAscii() | check if the string contains ASCII chars only. |
| isBase32() | check if a string is base32 encoded. |
| isBase58() | check if a string is base58 encoded. |
| isBase64(options]) | check if a string is base64 encoded. options is optional and defaults to {urlSafe: false}
when urlSafe
is true it tests the given base64 encoded string is url safe |
| isBefore(date]) | check if the string is a date that's before the specified date. |
| isBIC() | check if a string is a BIC (Bank Identification Code) or SWIFT code. |
| isBoolean() | check if a string is a boolean. |
| isBtcAddress() | check if the string is a valid BTC address. |
| isByteLength(options]) | check if the string's length (in UTF-8 bytes) falls in a range.options
is an object which defaults to {min:0, max: undefined}
. |
| isCreditCard() | check if the string is a credit card.