Skip to main content

4 docs tagged with "module"

View all tags

Application Menus

Guide for creating ServiceNow Application Menus and Modules using the Fluent API. Application menus define top-level sections in the ServiceNow navigator sidebar, and modules define the clickable items within them.

ApplicationMenu

Creates an Application Menu (sysappapplication). Application menus define top-level sections in the ServiceNow navigator sidebar. Modules define the clickable items within them.

Dependencies

now-sdk dependencies downloads Fluent and TypeScript type definitions from other applications and system definitions from your ServiceNow instance to provide TypeScript like type safety for your project — it doesn't affect the output of what gets built or installed. Run it whenever autocomplete or type-checking seems to be missing something for a table, role, or Glide API you're using that is not part of your application by used by it.

JavaScript Modules

JavaScript modules are the modern, preferred approach for all server-side code in Fluent projects. Modules support import/export, provide access to typed Glide APIs via @servicenow/glide, enable code reuse across your application, and integrate with third-party npm libraries.