# lsmod

> fetch list of modules and versions installed for the project root

Latest version **1.0.0** (published 2016-05-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install lsmod
pnpm add lsmod
yarn add lsmod
bun add lsmod
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2016-05-08 |
| First published | 2012-12-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Roman Shtylman |
| Maintainers | defunctzombie |
| Keywords | modules, runtime |

## Links

- npm: https://www.npmjs.com/package/lsmod
- Repository: https://github.com/shtylman/node-lsmod
- Homepage: https://github.com/shtylman/node-lsmod#readme
- Issues: https://github.com/shtylman/node-lsmod/issues
- npm.io page: https://npm.io/package/lsmod

## Recent versions

- 1.0.0 (latest) — 2016-05-08
- 0.0.3 — 2014-02-12
- 0.0.2 — 2013-02-08
- 0.0.1 — 2012-12-30

## README

# lsmod [![Build Status](https://secure.travis-ci.org/defunctzombie/node-lsmod.png?branch=master)](https://travis-ci.org/defunctzombie/node-lsmod)

lsmod fetches the list of modules and the versions loaded by the entry file for your node.js app.

## use

```javascript
var lsmod = require('lsmod');

// get an object with module version information
var modules = lsmod();

// modules is an object `key:version`
{
    express: '3.0.5',
    hbs: '2.0.1'
}
```

Note that the version is the actual installed version and not the dependency version string.

## install via [npm](https://npmjs.org)

```
npm install lsmod
```

---
_Source: https://npm.io/package/lsmod · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
