KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
voyager-server
★ 15
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
project-3-srw-multiplayer
:
Multiplayer turn based game based on Super Robot Wars: Original Generation 2.
GitClin
:
💻 GitClin V1.0 for downloading and installing tools
chaos-3d
:
3D fractal flame renderer
webcam-in-php-html5
:
Use webcam in PHP using HTML5, Jquery and Save the Image to Database
DJsonSchema
:
JSON Schema draft v4 reader and code generator for Delphi.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
voyager-server
?
Download (.md)
# voyager-server API for running core features of [voyager](https://github.com/vega/voyager/) on a backend server. This is an express app that can be used to offload Voyager's process-heavy tasks to a backend service. **NOTE:** This repo provides only a server-side API for a small set of features from voyager. For the main client-side application, please see the [voyager](https://github.com/vega/voyager/) repo. ## Features voyager-server currently provides two endpoints: **/recommend** : POST request. Executes `fetchCompassQLRecommend` from voyager and returns results in serialized JSON. **/build** : POST request. Executes `fetchCompassQLBuildSchema` from voyager and returns results in serialized JSON. ## Development We are using yarn for dependency management. ``` yarn ``` Should pull down the needed npm packages ``` yarn start ``` Will start the server in dev mode. ## Build ``` yarn build ``` Will create a compiled version of the code at: ``` build/server ``` This compiled code can then be run normally with `node`: ``` node build/server ```