
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
ilanguage-cloud
Advanced tools
Generate interactive wordclouds for any language, with automatic stop word detection and ability to export as svg or png.
Supply Chain Security
Vulnerability
Quality
Maintenance
License
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.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.