
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@tensorflow/tfjs-vis
Advanced tools
tfjs-vis is a small library for in browser visualization intended for use with TensorFlow.js.
Its main features are:
The library also aims to be flexible and make it easy for you to incorporate custom visualizations using tools of your choosing, such as d3, Chart.js or plotly.js.




You can install this using npm with
npm install @tensorflow/tfjs-vis
or using yarn with
yarn add @tensorflow/tfjs-vis
You can also load it via script tag using the following tag, however you need to have TensorFlow.js also loaded on the page to work. Including both is shown below.
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"> </script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-vis"></script>
See https://js.tensorflow.org/api_vis/latest/ for interactive API documentation.
const data = [
{ index: 0, value: 50 },
{ index: 1, value: 100 },
{ index: 2, value: 150 },
];
// Get a surface
const surface = tfvis.visor().surface({ name: 'Barchart', tab: 'Charts' });
// Render a barchart on that surface
tfvis.render.barchart(surface, data, {});
Found a bug or have a feature request? Please file an issue on the main TensorFlow.js repository
To build the library, you need to have node.js installed. We use yarn
instead of npm but you can use either.
First install dependencies with
yarn
or
npm install
Then do a build with
yarn build
or
npm run build
This should produce a tfjs-vis.umd.min.js file in the dist folder that you can
use.
FAQs
Utilities for in browser visualization with TensorFlow.js
The npm package @tensorflow/tfjs-vis receives a total of 1,811 weekly downloads. As such, @tensorflow/tfjs-vis popularity was classified as popular.
We found that @tensorflow/tfjs-vis demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 10 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.