Socket
Socket
Sign inDemoInstall

@ckeditor/ckeditor5-angular

Package Overview
Dependencies
8
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ckeditor/ckeditor5-angular

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


Version published
Weekly downloads
65K
increased by5.64%
Maintainers
1
Install size
258 kB
Created
Weekly downloads
 

Changelog

Source

1.0.0 (2018-10-09)

Bug fixes

  • The editor data is set to an empty string when the ngModel initializes or resets. (9abe65d)

Other changes

  • Added reset button to the form sample. Closes #31. (0d973eb)
  • The package will now work fine with Angular@5 so we decided to lower the minimal version of Angular to >=5.0.0. Closes #39. (078c2d2)

Readme

Source

CKEditor 5 rich text editor component for Angular 2+

Join the chat at https://gitter.im/ckeditor/ckeditor5 npm version Build Status
Dependency Status devDependency Status

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

Documentation

See the Angular 2+ component article in the CKEditor 5 documentation.

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 CKEditor component,
  • ./src/app is a demo application using the component.

Note: The npm package contains a packaged component only.

Testing the component (demo)

To open the demo application using the component, run:

npm run start

To test it in production, use:

npm run start -- --prod

To run unit tests, use:

npm run test

To run e2e tests run:

npm run 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

This project uses ng-packagr to create a 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

After generating the package, create a symlink to the ckeditor5-angular/dist package directory to test it in another (third–party) Angular project:

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

You may also need the following configuration in angular.json to include the symlinked component package without errors:

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

To publish the new package in the npm registry, run:

npm run release

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 09 Oct 2018

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc