1.0.2 • Published 3 years ago
grid-edit v1.0.2
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';
});