Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@revolist/revogrid
Advanced tools
Support Millions of cells and thousands of columns easy and efficiently for fast data rendering. Easy to use.
Demo and API • Key Features • How To Use • Installation • Docs • License
RevoGrid material theme.The RevoGrid component helps represent a huge amount of data in a form of data table "excel like" or as list. On top of it it provides inbuilt range edit or per cell edit, keyboard support and custom edit and render features. Works in any major framework or with no framework at all.
Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ |
The library published as a scoped NPM package in the NPMJS Revolist account. Check for more info on our demo side.
With NPM:
npm i @revolist/revogrid --save;
With Yarn:
yarn add @revolist/revogrid;
Grid works as web component. All you have to do just to place component on the page and access it properties as an element. We provide many ways to integrate our grid in your project:
const grid = document.querySelector('revo-grid');
const columns = [
{ prop: 'name', name: 'First column' },
{
prop: 'details',
name: 'Second column',
cellTemplate: (createElement, props) => {
return createElement('div',
{
style: { backgroundColor: 'red' },
class: { 'inner-cell': true },
},
props.model[props.prop] || '',
);
},
},
];
const items = [{ name: 'New item', details: 'Item description' }];
grid.columns = columns;
grid.source = items;
<template>
<v-grid :source="rows" :columns="columns"/>
</template>
<script>
import VGrid from '@revolist/vue-datagrid';
export default {
name: 'App',
data() => ({
columns: [
{ prop: 'name', name: 'First' },
{ prop: 'details', name: 'Second' },
],
rows: [{ name: '1', details: 'Item 1' }],
};
}),
components: { VGrid },
};
</script>
If you have any idea, feel free to open an issue to discuss a new feature, or fork RevoGrid and submit your changes back to me.
MIT
FAQs
Virtual reactive data grid spreadsheet component - RevoGrid.
The npm package @revolist/revogrid receives a total of 7,413 weekly downloads. As such, @revolist/revogrid popularity was classified as popular.
We found that @revolist/revogrid demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.