Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/llafuente/ng2-vs-table
Server side table/grid system.
https://github.com/llafuente/ng2-vs-table
Last synced: 1 day ago
JSON representation
Server side table/grid system.
- Host: GitHub
- URL: https://github.com/llafuente/ng2-vs-table
- Owner: llafuente
- License: mit
- Created: 2017-02-20T11:07:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-03T11:13:48.000Z (almost 8 years ago)
- Last Synced: 2024-04-26T02:22:12.878Z (8 months ago)
- Language: TypeScript
- Size: 1.82 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Very Simple Table (Angular2 Module)
[![Build Status](https://travis-ci.org/llafuente/ng2-vs-table.svg?branch=master)](https://travis-ci.org/llafuente/ng2-vs-table)
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/llafuente/ng2-vs-table/master/LICENSE)**NOTE**: Use bootstrap 4 and Font Awesome
## Demo
https://llafuente.github.io/ng2-vs-table/demo/## Table of contents
- [About](#about)
- [Installation](#installation)
- [Documentation](#documentation)
- [Development](#development)
- [License](#licence)## About
Server side table/grid system.
## Installation
Install through npm:
```
npm install --save ng2-vs-table
```Then use it in your app like so:
```typescript
import {VSTableModule} from 'ng2-vs-table';@NgModule({
//...
imports: [
VSTableModule
]
//...
})
```You may also find it useful to view the [demo source](https://github.com/llafuente/ng2-vs-table/blob/master/demo/demo.ts).
### Usage without a module bundler
```// everything is exported VSTable namespace
```
## Documentation
All documentation is auto-generated from the source via typedoc and can be viewed here:
https://llafuente.github.io/ng2-vs-table/docs/## Development
### Prepare your environment
* Install [Node.js](http://nodejs.org/) and NPM (should come with)
* Install local dev dependencies: `npm install` while current directory is this repo### Development server
Run `npm start` to start a development server on port 8000 with auto reload + tests.### Testing
Run `npm test` to run tests once or `npm run test:watch` to continually run tests.### Release
* Bump the version in package.json (once the module hits 1.0 this will become automatic)
```bash
npm run release
```## License
MIT