mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
92ccd71b87
Clarify docs for https://fleetdm.com/tables/npm_packages --------- Co-authored-by: Eric <eashaw@sailsjs.com>
16 lines
430 B
YAML
16 lines
430 B
YAML
name: npm_packages
|
|
columns:
|
|
- name: pid_with_namespace
|
|
platforms:
|
|
- linux
|
|
- name: mount_namespace_id
|
|
platforms:
|
|
- linux
|
|
examples: >-
|
|
List the author, description and more information about the NPM package called `webpack`, if installed:
|
|
|
|
```sql
|
|
SELECT author, description, directory, version FROM npm_packages WHERE name='webpack';
|
|
```
|
|
description: Node.js packages globally installed on a system.
|