You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
556 B
26 lines
556 B
1 year ago
|
# ethermap frontend
|
||
|
|
||
|
Frontend for ethermap
|
||
|
|
||
|
## Install
|
||
|
|
||
|
To install the frontend you will need [NodeJS](https://nodejs.org/en) and `npm` installed. Then :
|
||
|
|
||
|
```sh
|
||
|
$ npm i
|
||
|
```
|
||
|
|
||
|
To run the development server run :
|
||
|
|
||
|
```sh
|
||
|
$ npm run dev
|
||
|
```
|
||
|
|
||
|
## Tech
|
||
|
|
||
|
The interface is built with [LitElement](https://lit.dev/) and setup with [Vite](https://vitejs.dev/) bundler and dev server.
|
||
|
|
||
|
Maps are rendered with [Leaflet](https://leafletjs.com).
|
||
|
|
||
|
For ethermap to work you will also need to be running the [ethermap.api]() server for REST API and Socket.io connectivity.
|