JavaScript modules and third-party libraries
Summarize
Summary of JavaScript modules and third-party libraries
JavaScript modules enable ServiceNow customers to organize related code into reusable files within their applications. Modules can be created or converted using the ServiceNow IDE or SDK, and TypeScript can be compiled to JavaScript for module creation. Modules and third-party Node Package Manager (npm) libraries are managed as dependencies, stored in the EcmaScript Module [sysmodule] table after application installation.
Show less
Modules use export statements to expose code and import or require statements to reuse code. Global Glide Server APIs must be imported from the @servicenow/glide package to be used inside modules. Modules are scoped to their application and cannot be shared across different application scopes.
Key Features
- Module Creation and Usage: Group and share code with named or default exports; import modules via ES6
importstatements or CommonJSrequirein server-side scripts. - Third-Party Libraries: Add npm packages as dependencies in an application’s
package.jsonfile to use their modules. Only ECMAScript modules with defined exports are supported from third parties, not CommonJS modules without exports. - Server API Imports: Import Glide APIs and server functionalities from the
@servicenow/glidepackage and namespaces. Trusted modules must be declared innow.config.jsonfor third-party modules requiring server API access. - Script Includes: Can be imported from global or scoped namespaces within the
@servicenow/glidepackage for use in modules. - Path Aliases and Subpaths: Use the
importsfield inpackage.jsonto define shorthand aliases for module paths and dependencies, simplifying import statements.
Limitations
- Modules and third-party libraries are restricted to their application scope; cross-application usage is not supported.
- Application customizations are not supported within modules.
- Only a subset of ECMAScript features is supported based on the ServiceNow JavaScript engine capabilities.
- Node.js APIs and global web API variables are not supported within modules; the SDK build process polyfills Node.js built-ins when packaging.
- CommonJS modules without explicit exports and subpath imports in CommonJS modules are not supported.
- JavaScript modules can only be edited via the ServiceNow IDE or Visual Studio Code with the ServiceNow SDK.
- Third-party libraries that rely on unsupported APIs or ECMAScript features cannot be used.
Practical Use for ServiceNow Customers
By leveraging JavaScript modules and third-party libraries, ServiceNow customers can optimize their application codebases through modularization and code reuse. Importing server APIs and script includes directly into modules enhances development efficiency and enables better code organization. Declaring dependencies clearly in package.json ensures that third-party functionality is correctly integrated and maintained. Understanding the scope and limitations helps avoid unsupported configurations and ensures smooth application development.
Optimize your code base using JavaScript modules to group related code or add third-party libraries and reuse their code within applications.
Overview of using JavaScript modules
A module is a JavaScript file that contains related code that's shared and reused within applications on an instance. You can add JavaScript modules and third-party libraries in applications that are created or converted with the ServiceNow IDE or ServiceNow SDK. You can also use TypeScript to create modules and compile them to JavaScript before building your application. After installing an application on an instance, JavaScript modules are stored in the EcmaScript Module [sys_module] table.
In a module, you identify code for reuse with export statements. Then, use import or require statements to reuse the code elsewhere in your applications. You must add third-party Node Package Manager (npm) libraries to applications as dependencies to use their module code. For general information about the syntax used to create JavaScript modules, see the JavaScript modules page on the MDN Web Docs website.
@servicenow/glide package. For more information, see Importing server APIs.Limitations
- Application customizations aren't supported.
- Modules can be used only within the application scope in which they're added. They can't be used across application scopes.
- A subset of ECMAScript features are supported in modules in accordance with the JavaScript engine feature support.
- Node.js APIs aren’t supported in modules. The ServiceNow SDK build process polyfills any Node.js built-in modules while packaging modules, otherwise modules are resolved from the node_modules directory.
- Global variables related to web APIs aren’t supported.
- CommonJS modules from third-party libraries aren't supported unless they define exports. Subpath imports aren't supported with CommonJS modules. ECMAScript modules from third-party libraries are supported.
- import and export statements are only supported in modules. To import module code in scripts, such as business rules or script includes, use require statements.
- JavaScript modules [sys_module] can be modified only in the ServiceNow IDE or in Visual Studio Code with the ServiceNow SDK.
Exporting modules
export { myFunction, myVariable };Importing modules
To import the module code you want to reuse, use import statements in other modules or require statements in server-side scripts.
import { feature } from 'path/to/module';const { feature } = require('path/to/module');.ts file extension. For example, import { feature } from
'./module.ts'.{
"name": "math",
"version": "1.0.0",
"exports": {
"./functions/*.js": "./src/functions/*.js",
"./functions/private-functions/*": null
},
"imports": {
"#calc": "calculus",
"#derivative": "calculus/derivative"
},
"dependencies": {
"calculus": "1.0.0"
}
}#derivative
shorthand instead. Subpaths can also be used in the imports field to use shorthand for dependencies, such as
#calc.import { derivative } from '#derivative';
import * as calculus from '#calc';Adding third-party libraries
{
"name": "test",
"version": "1.0.0",
"dependencies": {
"math": "1.0.0"
}
}Importing server APIs
To import server APIs and use them in a module, use import statements. Glide APIs can be imported from the @servicenow/glide package or their namespace in the package.
import { API } from '@servicenow/glide';
import { API } from '@servicenow/glide/<namespace>';import { gs } from '@servicenow/glide';
import { GlideRecord } from '@servicenow/glide';sn_ws_int namespace in a module because they run in that
namespace:import { RESTAPIRequest, RESTAPIResponse } from '@servicenow/glide/sn_ws_int';To access server APIs in a third-party library module, you must add the module as a trusted module with the trustedModules parameter in your application's now.config.json file. For more information, see Custom application configuration in source code.
For more information about available server APIs, see Server API reference.
Importing script includes
To import script includes and use them in a module, use import statements. Script includes can be imported from their application scope or the global scope in the @servicenow/glide package.
import { global } from '@servicenow/glide/global';
import { ScriptInclude } from '@servicenow/glide/<scope>';For more information about script includes, see Script includes.