Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arction/lcjs-node-template
A template server for LightningChart JS headless
https://github.com/arction/lcjs-node-template
demo example javascript lightningchart-js node-js server template typescript
Last synced: about 11 hours ago
JSON representation
A template server for LightningChart JS headless
- Host: GitHub
- URL: https://github.com/arction/lcjs-node-template
- Owner: Arction
- License: mit
- Created: 2020-04-28T12:36:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-05-23T09:27:29.000Z (over 1 year ago)
- Last Synced: 2023-05-23T10:31:28.227Z (over 1 year ago)
- Topics: demo, example, javascript, lightningchart-js, node-js, server, template, typescript
- Language: TypeScript
- Homepage: https://www.arction.com/lightningchart-js/
- Size: 4.25 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LightningChart JS Node JS server template
![Template](templateIndex.png)
Express based server template, showcasing how to use the [`@arction/lcjs-headless`][lcjs-headless-npm] package to render charts with [LightningChart JS][lightningchart-js] on server environment.
This template is heavily influenced by the Microsoft's [TypeScript-Node-Starter][ts-node-starter] template.
## Requirements
* Node JS
* See the `@arction/lcjs-headless` Readme for specific requirements for your operating system and environment.## Getting Started
1. Clone the repository
```
git clone --depth=1 https://github.com/Arction/lcjs-node-template.git
```2. Install project dependencies
```
cd
npm install
```3. Build and run the project
```
npm run build
npm run start
```4. Open a browser and navigate to `http://localhost:3000`
[lcjs-headless-npm]: https://www.npmjs.com/package/@arction/lcjs-headless
[lightningchart-js]: https://www.arction.com/lightningchart-js/
[ts-node-starter]: https://github.com/microsoft/TypeScript-Node-Starter