Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lekoala/data-grid
Standalone data grid web component
https://github.com/lekoala/data-grid
bootstrap bootstrap5 custom-elements datagrid es6 grid web-component
Last synced: about 15 hours ago
JSON representation
Standalone data grid web component
- Host: GitHub
- URL: https://github.com/lekoala/data-grid
- Owner: lekoala
- License: mit
- Created: 2021-11-12T16:53:26.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-13T09:20:55.000Z (2 months ago)
- Last Synced: 2024-11-14T11:44:13.017Z (5 days ago)
- Topics: bootstrap, bootstrap5, custom-elements, datagrid, es6, grid, web-component
- Language: HTML
- Homepage:
- Size: 2.24 MB
- Stars: 11
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: readme-dev.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Developer Notes
## How to build the source files
### Install Node.js
- Install with the setup package from [Node.js](https://nodejs.org/en/download/)
### Install dependency packages
- From terminal or command line console, run the following commands.
```
npm install esbuild
npm install sass
npm install postcss autoprefixer postcss-cli
```### Build for all source files
- From terminal or command line console, run the following command.
```
npm run build-all-locally
```### Bundle and minify the js code
- From terminal or command line console, run the following command.
```
npm run build
```### Compile from scss to css
- From terminal or command line console, run the following command.
```
npm run build-css
```