How can I use CKEditor from npm with webpack?
Ideally I want npm install ckeditor --save then var CK = require(\'ckeditor\'); without any g
npm install ckeditor --save
var CK = require(\'ckeditor\');
CKEditor was published on NPM.
Now you can use exactly the commands you want.
npm install ckeditor --save-dev
var CK = require('ckeditor');