Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/renanlecaro/importabular
5kb spreadsheet editor for the web, let your users import their data from excel.
https://github.com/renanlecaro/importabular
keyboard-shortcut npm spreadsheet table
Last synced: about 5 hours ago
JSON representation
5kb spreadsheet editor for the web, let your users import their data from excel.
- Host: GitHub
- URL: https://github.com/renanlecaro/importabular
- Owner: renanlecaro
- License: mit
- Created: 2020-09-14T10:39:03.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-02T18:40:31.000Z (7 months ago)
- Last Synced: 2024-11-08T23:49:25.832Z (11 days ago)
- Topics: keyboard-shortcut, npm, spreadsheet, table
- Language: JavaScript
- Homepage: https://importabular.lecaro.me/
- Size: 1.31 MB
- Stars: 147
- Watchers: 7
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# importabular
Lightweight spreadsheet editor for the web, to easily let your users import their data from excel.
- Lightweight (under 5kb gzipped)
- Mobile friendly
- Copy / paste
- MIT License# Quickstart
The quick and dirty way :
```
const sheet = new Importabular({
node: document.getElementById("editor"),
columns: [
{
label: "Contact name",
},
{
label: "Phone number",
},
{
label: "Email address",
},
],
});```
# Demo and docThe website will give you more details : https://importabular.lecaro.me/
NPM : https://www.npmjs.com/package/importabular
![Screenshot of the demo website](./src/demo/screenshot.jpg)