installation of draw2d latest version on angular 10

how can I install the latest version of draw2d library on angular 10?

I used the command "npm i draw2d" but the version that has been installed is 1.0.38 although the latest version is 6.1 I guess.

enter image description here

thank you.

Upvotes: 0

Views: 1096

Answers (2)

dadaluji
dadaluji

Reputation: 26

Actually, you have the latest version of draw2d according to npm : https://www.npmjs.com/package/draw2d/v/1.0.37

You can also download and add it manually at https://github.com/freegroup/draw2d

To be clear, the version on npm is a package version, not the same that draw2d version of draw2d.org (http://www.draw2d.org/draw2d/).

It creates confusion, I think it's a mistake from the author.

Upvotes: 1

Mehan alavi
Mehan alavi

Reputation: 3

You can test :

npm i [email protected]

Upvotes: 0

Related Questions