Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Infrastructure as code
See every change, undo any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
More
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Infrastructure as code
See every change, undo any error, repeat every success.
Extend Fleet
Integrate your favorite tools with Fleet.
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
Apple
Linux
Windows
ChromeOS
npm_packages
Node.js packages globally installed on a system.
| Column | Type | Description |
|---|---|---|
| author | text | Package-supplied author |
| description | text | Package-supplied description |
| directory | text | Directory where node_modules are located |
| homepage | text | Package supplied homepage |
| license | text | License under which package is launched |
| mount_namespace_id | text | Mount namespace id Only available on Linux |
| name | text | Package display name |
| path | text | Path at which this module resides |
| pid_with_namespace | integer | Pids that contain a namespace Only available on Linux |
| version | text | Package-supplied version |
List the author, description and more information about the NPM package called webpack, if installed:
SELECT author, description, directory, version FROM npm_packages WHERE name='webpack';