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