Skip to main content

JavaScript and TypeScript packaging

Your JavaScript and TypeScript applications must meet specific packaging and compilation requirements before you can submit them for scanning.

See Supported languages and platforms for instructions for other platforms.

You can analyze applications using Veracode Static Analysis or Veracode Software Composition Analysis (SCA) upload and scan, if licensed. For SCA agent-based scan requirements, see Using Veracode SCA with Programming Languages.

JavaScript automated packaging

The Veracode CLI package command simplifies the packaging process for JavaScript projects. See Veracode CLI for instructions.

Supported JavaScript libraries and technologies

Veracode supports analyzing many client- and server-side JavaScript and TypeScript applications, including those that use HTML5 APIs, TypeScript 5 and earlier, ECMAScript 2015-2023, and JSX. Veracode also supports the following technologies:

Framework/TechnologySupported versions
Angular0–1.x, 2.x, 4.x–16.x
AWS SDK for JavaScript2.x.x
Azure Functions2.x-4.x
Backbone.js1.3.3 and earlier
Bootstrap1–4
Cheerio.js0.2–0.20
Ember.js1.x–3.x
Express0–4.17.1
jQueryAll
Koa.js0.x–2.13
Node.js20.x and earlier
React.js0.13–18.x.x, react-router versions 2–6
SAPUI5/OpenUI51.x
Underscore.js1.8.3 and earlier
Vue.js1–3.x, vue-router versions 1–3.x

Template engines

NameSupported versions
Angular templatesAll
Handlebars.js1–4.x
Hogan.js0–3.x
Mustache.js0.6–2.2.x
Swig1.x

Unsupported JavaScript technologies

Veracode does not support the analysis of CoffeeScript applications.

Packaging guidance for JavaScript and TypeScript

Veracode extracts client-side JavaScript from JSP files that are uploaded as part of a JAR, WAR, or EAR file, and creates a separate JavaScript module that is selectable for analysis.

Upload a ZIP file containing JavaScript source code, or files that contain JavaScript. Veracode only extracts JavaScript from files with these extensions:

  • ASP
  • CSS
  • EHTML
  • ES
  • ES6
  • HANDLEBARS
  • HBS
  • HJS
  • HTM
  • HTML
  • JS
  • JSX
  • JSON
  • JSP
  • MAP
  • MUSTACHE
  • PHP
  • TS
  • TSX
  • VUE
  • XHTML
note

If a packaged web application includes files that contain JavaScript and those included files have one of the file extensions in the previous list, Veracode extracts the JavaScript and scans it.

To reduce the size of your packaged application, you can exclude the node_modules directory, as Veracode does not scan this directory.

When you submit .NET applications that use TypeScript for analysis, package the TypeScript source files separately from the .NET application. For best results, do not precompile TypeScript applications into JavaScript. Submit only the TypeScript source files.

If your JavaScript build or packaging process produces source map files that include the original source, submit the MAP files with the other files in your application, which Veracode can use to provide greater accuracy when analyzing the application. MAP files must include sources and sourcesContent properties.

Each element of the sources property array must have a corresponding element in the sourcesContent property array.

Veracode requires that you submit JavaScript as source code in a format readable by developers. Avoid build steps that minify, obfuscate, bundle, or otherwise compress JavaScript sources.

You must upload original JavaScript sources. Do not upload files that are concatenated or minified. Veracode ignores files that have filenames that suggest that they are concatenated or minified files. For example, Veracode does not analyze files with names such as all.js, app.all.js, or library.min.js because it interprets them as potentially concatenated or minified. You must rename files such as these if you want Veracode to analyze them.

Software Composition Analysis requirements

If using Veracode Software Composition Analysis, follow these requirements for your package manager:

NPM

Include the package-lock.json or npm-shrinkwrap.json file in the root of your ZIP archive with the lockfile format version set to 3 or lower.

If you do not include package-lock.json or npm-shrinkwrap.json, Veracode can generate SCA information out of the node_modules directory in the root of your ZIP archive. However, Veracode does not recommend including the node_modules directory because it significantly increases upload size without practical benefits.

If you include npm-shrinkwrap.json or package-lock.json, Veracode excludes development dependencies from the scan results.

If you include a node_modules directory without npm-shrinkwrap.json or package-lock.json, the content of the directory determines which dependencies to include in the results. Ensure that you use the correct npm install options to install the appropriate packages in node_modules for your NPM version.

Yarn

Include both package.json and yarn.lock in the root of your ZIP archive.

If you do not include package.json or yarn.lock, Veracode can generate SCA information out of the node_modules directory in the root of your ZIP archive. However, Veracode does not recommend including the node_modules directory because it significantly increases upload size without practical benefits.

If you include package.json and yarn.lock, Veracode restricts scan results to production, development, or optional dependencies based on the defined scope:

  • None: production, development, and optional dependencies
  • prod: production and optional dependencies
  • dev: development dependencies

If you include a node_modules directory without both package.json and yarn.lock, the content of the directory determines which dependencies to include in the results. Ensure that you use the correct yarn install options to install the appropriate packages in node_modules.

Bower

Include the bower_components directory in your project. To achieve the most accurate results, include bower.json in that directory.

Packaging AWS Lambda applications

Veracode requires you to submit applications built for AWS Lambda according to the AWS Lambda Deployment Package formats. For information, see https://docs.aws.amazon.com/ and search for AWS Lambda Deployment Package in Node.js.

note

Veracode does not support the analysis of dependencies submitted as Lambda layers. To analyze Lambda components deployed in layers, submit them as standard deployment packages, or consider repackaging the function to include layer components as part of the lambda function package.

Identifying Lambda function handlers for JavaScript and TypeScript

In JavaScript, you pass either two or three parameters to Lambda function handlers depending on whether the functions are asynchronous. However, the JavaScript runtime allows functions to have multiple parameters.

To detect Lambda function handlers for JavaScript and TypeScript, Veracode accepts the YAML and YML configuration files included in the uploaded package from the serverless and AWS SAM frameworks. Veracode parses these configuration files to identify the function handlers defined in the uploaded artifact. Veracode does not use these configuration files to identify the configuration of layers or other settings.

If a deployment package does not contain a YAML configuration file, Veracode may not identify the deployment package as containing an Express or Koa application. In this case, Veracode applies these heuristics to identify the candidate source files in the deployment package:

  • If a directory called functions exists, every JavaScript file in every subdirectory below functions is a candidate file. Veracode does not consider files in any directories below one directory level to be candidate files.
  • Every JavaScript file in the top-level directory of the archive is a candidate source file.

After Veracode identifies a candidate file, the scan considers the exported functions attached to exports or module.exports as handler functions. Examples include:

  • exports.handler = async function(event, context) {
  • exports.handler = function(event, context, callback) {
  • exports.handler = async function(event, context, testval, testbar) {
  • module.exports.lambdaproxyentry = async event => {

Developers often configure Express or Koa applications that run as Lambda functions to use those Lambda functions as proxies for the original Express or Koa code. In these cases, Veracode analyzes the artifact as an uploaded, standalone Express or Koa application.