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';