Skip to content

Instantly share code, notes, and snippets.

View Drrowly99's full-sized avatar
💭
Building

Divine Edet Iso Drrowly99

💭
Building
  • Portharcourt
View GitHub Profile
@michielmulders
michielmulders / stellar-app.js
Last active February 9, 2022 01:27
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())