71 lines
2.4 KiB
Plaintext
71 lines
2.4 KiB
Plaintext
# Grid.js
|
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
[](#contributors-)
|
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
|
|
<p align="center">
|
|
<a href="https://gridjs.io" target="_blank">
|
|
<img src="https://gridjs.io/img/logo/text_large.png" height="200" alt="Grid.js" />
|
|
</a>
|
|
</p>
|
|
<p align="center">Advanced table plugin</p>
|
|
|
|
**A table library that works everywhere**
|
|
|
|
- Simple and lightweight implementation
|
|
- No vendor lock-in. Grid.js can be used with any JavaScript frameworks (React, Angular, Preact or VanillaJS)
|
|
- Written in TypeScript
|
|
- Supports all modern browsers and IE11+
|
|
|
|
## Example
|
|
|
|
```js
|
|
new Grid({
|
|
data: [
|
|
['Mike', 33, 'mike@murphy.com'],
|
|
['John', 82, 'john@conway.com'],
|
|
['Sara', 26, 'sara@keegan.com']
|
|
],
|
|
columns: ['Name', 'Age', 'Email']
|
|
}).render(document.getElementById('wrapper'));
|
|
```
|
|
|
|
Piece of :cake:
|
|
|
|
## Getting Started
|
|
|
|
- [Install](https://gridjs.io/docs/index)
|
|
- [Getting Started](https://gridjs.io/docs/index)
|
|
- [Examples](https://gridjs.io/docs/examples/hello-world)
|
|
|
|
## Documentation :book:
|
|
|
|
Full documentation of Grid.js installation, config, API and examples are available
|
|
on Grid.js website [grid.js/docs](https://gridjs.io/docs/index).
|
|
|
|
## Community
|
|
|
|
- Join our [Discord channel](https://discord.gg/K55BwDY)
|
|
- Take a look at [gridjs](https://stackoverflow.com/questions/tagged/gridjs) tag on StackOverflow or ask your own question!
|
|
- Read our [blog](https://gridjs.io/blog) for the latest updates and announcements
|
|
- Follow our Twitter account [@grid_js](https://twitter.com/grid_js)
|
|
|
|
## Contributors ✨
|
|
|
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
<!-- prettier-ignore-start -->
|
|
<!-- markdownlint-disable -->
|
|
<table>
|
|
<tr>
|
|
<td align="center"><a href="http://afshinm.name"><img src="https://avatars3.githubusercontent.com/u/314326?v=4" width="100px;" alt=""/><br /><sub><b>Afshin Mehrabani</b></sub></a><br /><a href="https://github.com/grid-js/gridjs/commits?author=afshinm" title="Code">💻</a> <a href="https://github.com/grid-js/gridjs/commits?author=afshinm" title="Documentation">📖</a></td>
|
|
</tr>
|
|
</table>
|
|
|
|
<!-- markdownlint-enable -->
|
|
<!-- prettier-ignore-end -->
|
|
<!-- ALL-CONTRIBUTORS-LIST:END -->
|
|
|
|
## License
|
|
|
|
[MIT](https://github.com/grid-js/gridjs/blob/master/LICENSE)
|