partridgejiang / Kekule.js

A Javascript cheminformatics toolkit.
http://partridgejiang.github.io/Kekule.js
MIT License
250 stars 61 forks source link

CDN link ? #137

Closed ddoyen closed 5 years ago

ddoyen commented 5 years ago

Is there a CDN link to include Kekule in a web page ? I can't find it.

partridgejiang commented 5 years ago

Hi @ddoyen, since Kekule.js is published on npm, some CDNs have already included it by default. For example, you can use the unpkg service in your HTML code:

<script src="https://unpkg.com/kekule/dist/kekule.js?modules=chemWidget,algorithm"></script>
<link rel="stylesheet" type="text/css" href="https://unpkg.com/kekule/dist/themes/default/kekule.css" />
ddoyen commented 5 years ago

Thanks !