# sourceify

> Browserify transform for inlining external source maps

Latest version **1.0.0** (published 2019-03-26) · MIT license · 0 weekly downloads

## Install

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

## 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 | 2019-03-26 |
| First published | 2016-01-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 4.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Tenor Biel |
| Maintainers | l8d |
| Keywords | browserify, source maps |

## Links

- npm: https://www.npmjs.com/package/sourceify
- Repository: https://github.com/L8D/sourceify
- Issues: https://github.com/L8D/sourceify/issues
- npm.io page: https://npm.io/package/sourceify

## Dependencies (2)

- [through2](https://npm.io/package/through2.md) ^2.0.0
- [convert-source-map](https://npm.io/package/convert-source-map.md) ^1.1.3

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2019-03-26
- 0.1.0 — 2016-01-27
- 0.0.0 — 2016-01-11

## README

sourceify
=========

Browserify transform for inlining source maps. Sourceify will read comments
like `// sourceMappingURL=...` that refer to external files, and will attempt
to read and inline those so that browserify can include those source maps when
producing bundle-wide source maps. It also tries to handle source roots, by
treating the source root as relative to the package root.

Usage
-----

```js
var browserify = require('browserify');
var sourceify = require('sourceify');

var bundler = browserify({
    debug: true,
    // options
    transform: [sourceify]
});

bundler.bundle();
// ...
```

License
-------

Copyright &copy; 2019 Tenor Biel

Released under the MIT license.

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