# carlo-extensions

> Launch carlo with extensions

Latest version **1.0.0** (published 2018-11-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install carlo-extensions
pnpm add carlo-extensions
yarn add carlo-extensions
bun add carlo-extensions
```

## 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 | 2018-11-15 |
| First published | 2018-11-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Jan Potoms |
| Maintainers | janpotoms |
| Keywords | carlo, extensions |

## Links

- npm: https://www.npmjs.com/package/carlo-extensions
- Repository: https://github.com/Janpot/carlo-extensions
- Homepage: https://github.com/Janpot/carlo-extensions#readme
- Issues: https://github.com/Janpot/carlo-extensions/issues
- npm.io page: https://npm.io/package/carlo-extensions

## Recent versions

- 1.0.0 (latest) — 2018-11-15

## README

# carlo-extensions

Use chrome extensions conveniently in [carlo](https://www.npmjs.com/package/carlo);

```js
const { withExtensions } = require('carlo-extensions');
const app = await carlo.launch(withExtensions([
  path.resolve(__dirname, 'my-extension')
], {
  args: [ '--auto-open-devtools-for-tabs' ]
}));
```

The `@npm-chrome-extensions` org publishes existing chrome extensions on npm. You can use them as follows:

```sh
npm i -D @npm-chrome-extensions/react-devtools@3.4.2-dev.1
```

```js
const { withExtensions } = require('carlo-extensions');
const app = await carlo.launch(withExtensions([
  require('@npm-chrome-extensions/react-devtools')
], {
  args: [ '--auto-open-devtools-for-tabs' ]
}));
```

[Open a ticket or a PR](https://github.com/janpot/npm-chrome-extensions/issues) if you want an extension included. Make sure its license allows republishing.

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