🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@samhammer/ssp-ckeditor5-build-inline

Package Overview
Dependencies
Maintainers
6
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@samhammer/ssp-ckeditor5-build-inline

The inline editor build of CKEditor 5 – the best browser-based rich text editor.

latest
Source
npmnpm
Version
29.1.7
Version published
Weekly downloads
29
11.54%
Maintainers
6
Weekly downloads
 
Created
Source

CKEditor 5 inline editor build

Custom inline editor build for CKEditor 5 with additional Plugins from Samhammer AG.

Quick start

While development you can link plugins by its source code instead of package. This is done with lerna. (https://github.com/lerna/lerna)

Setp 1

Just create a folder "packages" in the root of this project and checkout your plugin to this folder

See also: lerna.json

Step 2

After checkout the project has to be initialized once before building it.

Ensure that you have a global installation of lerna 2.x.

Just run the following command to initialize the project and make it linkable (see further information below):

npm run bootstrap

Step 3

Run one of the following commands to create a production (minified) or dev version

npm run build
npm run builddev

How to use

This build can be referenced in other yarn based projects while development. This is done with the yarn link feature.

See also: https://yarnpkg.com/lang/en/docs/cli/link/

Yarn link is directly executed by the "yarn bootstrap" command. After this the development version of the package is provided for linking.

Execute the following command in your target project to use the dev version of the inline build:

yarn link @samhammer/ssp-ckeditor5-build-inline

Include in your JavaScript application:

import InlineEditor from '@samhammer/ckeditor5-build-inline';

InlineEditor
	.create(document.querySelector('#editor'))
	.then(editor => {
		window.editor = editor;
	})
	.catch(err => {
		console.error(err.stack);
	});

How to publish

For publishing an npm account that is referenced to the organization is required.

See the following how to:

https://yarnpkg.com/en/docs/publishing-a-package

If everything is configured correctly just count up the version number in our package.json and execute the following command:

npm publish

License

Licensed under the terms of GNU General Public License Version 2 or later. For full details about the license, please check the LICENSE.md file.

Keywords

ckeditor5-build

FAQs

Package last updated on 04 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts