grid-edit
v1.0.2
Published
Simple datagrid editor to add/remove colums and rows, import/export csv files, sorting, etc.
Downloads
1
Readme
Grid Editor
Features
- Add/Remove colums and rows
- Sorting
- In browser persistence
- CSV exportation and importation
Overview
Sample use
- Let source code available
ln -s node_modules/grid-edit files
- Define a static server
var express = require('express');
var app = express();
app.use(express.static('./files'));
app.listen(9900,()=>{
See 'http://localhost:9900/index.html';
});