
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@phudak/ckeditor5-build-inline-basic
Advanced tools
Basic Inline CKEditor 5 build with Font style, Links, Emoji and Special Characters plugins.
Basic CKEditor5 inline build.

This build contains:
Basic Editor build is useful for creating descriptions or article perex without media in one font type.
To install it, run:
npm i --save @phudak/ckeditor5-build-inline-basic
Creating an editor using a CKEditor 5 build is very simple and can be described in two steps:
<script> tag.create() method to create the editor.In your HTML page add an element that CKEditor should replace:
<div id="editor"></div>
Load the editor build
<script src="... ckeditor5-build-inline-basic/build/ckeditor.js"></script>
Call the editor
<script>
BasicInlineEditor.create( document.querySelector( '#editor' ) )
.then( editor => {
window.editor = editor;
} )
.catch( error => {
console.error( 'There was a problem initializing the editor.', error );
} );
</script>
CKEditor 5 Builds allow you to quickly and easily initialize one of the many types of editors in your application. At the same time, CKEditor 5 is also a framework for creating custom-made rich text editing solutions.
To find out how to start building your own editor from scratch go to CKEditor 5 Framework overview section of CKEditor 5 documentation.
FAQs
Basic Inline CKEditor 5 build with Font style, Links, Emoji and Special Characters plugins.
We found that @phudak/ckeditor5-build-inline-basic demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.