# @join2sail/ckeditor5-build

> The custom editor build of CKEditor 5

Latest version **1.0.0** (published 2021-11-20) · 0 weekly downloads

## Install

```sh
npm install @join2sail/ckeditor5-build
pnpm add @join2sail/ckeditor5-build
yarn add @join2sail/ckeditor5-build
bun add @join2sail/ckeditor5-build
```

## 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 | 2021-11-20 |
| First published | 2021-11-20 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.1 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | guselal, nwm973 |

## Links

- npm: https://www.npmjs.com/package/@join2sail/ckeditor5-build
- npm.io page: https://npm.io/package/@join2sail/ckeditor5-build

## Recent versions

- 1.0.0 (latest) — 2021-11-20
- 0.0.5 — 2021-11-20
- 0.0.4 — 2021-11-20
- 0.0.3 — 2021-11-20
- 0.0.2 — 2021-11-20
- 0.0.1 — 2021-11-20

## README

CKEditor 5 custom editor build
========================================

## Quick start

First, install the build from npm:

```bash
npm install --save @join2sail/ckeditor5-build
```

And use it in your website:

```html
<div id="editor">
	<p>This is the editor content.</p>
</div>
<script src="./node_modules/@join2sail/ckeditor5-build/build/ckeditor.js"></script>
<script>
	CustomEditor
		.create(document.querySelector('#editor'))
		.then(editor => {
			window.editor = editor;
		})
		.catch(error => {
			console.error('There was a problem initializing the editor.', error);
		});
</script>
```

Or in your JavaScript application:

```js
import CustomEditor from '@join2sail/ckeditor5-build';

// Or using the CommonJS version:
// const CustomEditor = require('@join2sail/ckeditor5-build');

CustomEditor
	.create(document.querySelector('#editor'))
	.then(editor => {
		window.editor = editor;
	})
	.catch(error => {
		console.error('There was a problem initializing the editor.', error);
	});
```

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