Install CKeditor using Bower

Mike

I am struggling to install ckeditor with Bower, I have tried a bunch of different things but each time I end up with just a .bower.json file and a Readme file or index file. I never get more than 2 files :( I am able to install other packages just fine, so I know things are set up ok.

Here are some things I have tried:

    {
       "dependencies": {
          "ckeditor": "latest",

          "ckeditor": "https://github.com/ckeditor/ckeditor-releases/releases/tag/4.2.1/standard",

          "ckeditor": "https://github.com/ckeditor/ckeditor-releases/releases/tag/4.2.1/standard",

          "ckeditor": "https://github.com/ckeditor/ckeditor-releases/commit/a822d585d4ebf8d969fa" 
       }
    }

Why is this package different than the rest? What is the key to crack it?

Marek Lewandowski

Since version 4.3.3 CKEditor introduced support for Bower. You may simply install it with following command:

bower install ckeditor

You may also download it by setting dependencies in your bower.json:

{
    "name": "my-project",
    "dependencies": {
        "ckeditor": "4"
    }
}

After that fetch dependencies with:

bower update

Note: that it will download standard-all preset, which essentially contains all the official plugins available, but only part of them enabled in configuration.

More information can be found in CKEditor package managers guide.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Install tweenmax using bower

From Java

Bower install using only https?

From Dev

Using Maven to install Bower components with Bower installed globally

From Dev

How to install highlight.js using bower?

From Dev

Can't able to install handlebarjs using Bower

From Dev

How to install bootstrap in Laravel 5 using bower, gulp and elixir?

From Dev

How to install a bower package using a private git server (SSH)?

From Java

How to install latest (untagged) state of a repo using bower?

From Dev

How to install Bootstrap v4 alpha using bower?

From Dev

npm install bower using -g vs --save-dev

From Dev

How to install latest unstable AngularJS components using Bower?

From Dev

How to install Polymer iron-elements using bower?

From Dev

How can I install custom fonts using Bower? (not Font Awesome)

From Dev

Dockerizing npm & bower install using the digitallyseamless/nodejs-bower-grunt docker image

From Dev

Dockerizing npm & bower install using the digitallyseamless/nodejs-bower-grunt docker image

From Dev

Bower install - failed with ETIMEDOUT

From Dev

EACCES Error with Bower install?

From Dev

Unable to install bower on Openshift

From Dev

Bower install an ignored file

From Dev

Bower install: No versions available

From Dev

how to install highcharts with bower

From Dev

bower install with beanstalk

From Dev

Bower install Libraries Issues

From Dev

Bower install malformed on mac

From Dev

Bower : install fork of Bootstrap

From Dev

EACCES Error with Bower install?

From Dev

Bower install - failed with ETIMEDOUT

From Dev

Django Bower Install Virtualenv

From Dev

grunt bower-install of a shimmed bower dependency

Related Related

HotTag

Archive