Skip to content

Instantly share code, notes, and snippets.

View johannlilly's full-sized avatar
🔬
Researching

Johann Lilly 李光 يوهان ليل Джон Лилли johannlilly

🔬
Researching
View GitHub Profile
@johannlilly
johannlilly / stellar-app.js
Created July 15, 2018 21:01 — forked from michielmulders/stellar-app.js
Stellar Lumens JavaScript SDK
import express from 'express'
import bodyParser from 'body-parser'
import rp from 'request-promise'
import Stellar from 'stellar-sdk'
/* Initialize app and configure bodyParser */
const port = process.env.PORT || 4000
const app = express()
app.use(bodyParser.json())