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.
Extend Fleet
Integrate your favorite tools with Fleet.
Customers
Stripe + Fleet
Stripe consolidates multiple tools with Fleet.
Foursquare + Fleet
Foursquare quickly migrates to Fleet for device management.
What people are saying
Stories from the Fleet community.
More
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
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';