
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
ilanguage-cloud
Advanced tools
Generate interactive wordclouds for any language, with automatic stop word detection and ability to export as svg or png.
Generate interactive wordclouds for any language, with automatic stop word detection and ability to export as svg or png.
Install the module with: npm install ilanguage-cloud
var ILanguageCloud = require('ilanguage-cloud');
new ILanguageCloud().render(); // returns a wordcloud object with default options
Install the module with: bower install ilanguage-cloud --save
Or, download the production version or the development version.
In your web page:
<script src="ilanguage-cloud.min.js"></script>
<script>
new ILanguageCloud({text: 'A cloud is a visible mass ...'}).render(); // renders the text as a cloud to a div id="cloud" if exists
</script>
In your code, you can attach ILanguageCloud's methods to any object.
<script>
var exports = WordCloud;
</script>
<script src="ilanguage-cloud.min.js"></script>
<script>
new WordCloud({text: 'A cloud is a visible mass ...'}).render();
</script>
Optionally, you can pass an options object to ILanguageCloud.
<script>
var myOptions = {
element: 'cloud',
text: 'A cloud is a visible mass of condensed droplets or frozen crystals suspended in the atmosphere.',
font: 'FreeSans',
nonContentWords: 'a is by in of the or'
};
</script>
<script src="ilanguage-cloud.min.js"></script>
<script>
new ILanguageCloud(myOptions).render();
</script>
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using the scripts in package.json
.
Copyright (c) 2012-2017 iLanguageCloud Contributors. Licensed under the Apache 2.0 license.
FAQs
Generate interactive wordclouds for any language, with automatic stop word detection and ability to export as svg or png.
The npm package ilanguage-cloud receives a total of 1 weekly downloads. As such, ilanguage-cloud popularity was classified as not popular.
We found that ilanguage-cloud demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.