Socket
Socket
Sign inDemoInstall

@ckeditor/ckeditor5-angular

Package Overview
Dependencies
13
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ckeditor/ckeditor5-angular

Official Angular component for CKEditor 5 – the best browser-based rich text editor.


Version published
Weekly downloads
62K
increased by3.21%
Maintainers
1
Install size
274 kB
Created
Weekly downloads
 

Changelog

Source

7.0.1 (2023-10-12)

Other changes

  • Added catching and emitting errors that happen during editor initialization. Closes #392. (commit)
  • Updated the required version of Node.js to 18 when developing the repository. See ckeditor/ckeditor5#14924. (commit)

Readme

Source

CKEditor 5 rich text editor component for Angular

npm version CircleCI Coverage Status Dependency Status

Official CKEditor 5 rich text editor component for Angular 13+.

Developer Documentation 📖

See the "Rich text editor component for Angular" guide in the CKEditor 5 documentation to learn more:

Supported Angular versions

Because of the breaking changes in the Angular library output format, the @ckeditor/ckeditor5-angular package is released in the following versions to support various Angular ecosystems:

Package versionAngular versionDetails
Actively supported versions
^713+Changes in peer dependencies. (issue)
Past releases (no longer maintained)
^613+Requires CKEditor 5 at least in version 37.
^513+Requires Angular at least in version 13+. Lower versions are no longer maintained.
^49.1+Requires CKEditor 5 at least in version 34.
^39.1+Requires Node.js at least in version 14.
^29.1+Migration to TypeScript 4. Declaration files are not backward compatible.
^15.x - 8.xAngular versions are no longer maintained.

Note that the package.json file used in the main repository isn't published on npm (the production one is present in src/ckeditor/package.json).

Contributing

After cloning this repository, install necessary dependencies:

npm install

The structure of the repository

This repository contains the following code:

  • ./src/ckeditor contains the implementation of the <ckeditor> component,
  • ./src/app is a demo application using the component.

Note: The npm package contains a packaged component only.

Testing the component (demo)

First, the CKEditor 5 build should be created out of source files:

npm run build-ckeditor

To open the demo application using the component, run:

npm run start

To test it in production, use:

npm run start -- --configuration production

To run unit tests, use:

npm run test

To run e2e tests, run:

# Prepare the server.
npm run start
# Then, start tests.
npm run test:e2e

To run coverage tests, run:

npm run coverage

Play with the application and make sure the component works properly.

Releasing

Generating the changelog
npm run changelog
Packaging the component

Note This step is required to test the package used as an npm dependency.

This project uses ng-packagr to create the package meeting the Angular Package Format specification.

Calling:

npm run build-package

creates a package in the ./dist directory, which can be then published in the npm registry.

Testing the package before releasing

To test the ckeditor5-angular package, first bootstrap an empty Angular package using ng new and add the <ckeditor> component by following the guide.

Then, create a symlink to the ckeditor5-angular/dist package directory to test the ckeditor5-angular component via this repository.

ln -s path/to/ckeditor5-angular/dist node_modules/\@ckeditor/ckeditor5-angular

Make sure that the preserveSymlinks option is set to true for the build architect in angular.json:

{
	"project-name": {
		"architect": {
			"build": {
				"options": {
					"preserveSymlinks": true
				}
			}
		}
	}
}

Make sure to test the package with the production setup (ng build --configuration production) and with older Angular versions (at least with the 9.1).

Publishing the package

To create the release directory, run:

npm run release:prepare-packages

Then, to publish the new package in the npm registry, run:

npm run release:publish-packages

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

FAQs

Last updated on 12 Oct 2023

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc