shanev / koa-ios-api

Self-hosted API server for iOS apps, with push notifications and user accounts.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Koa iOS API

Barebones API server for iOS apps using ES2017 Javascript and best practices. Built on Koa, the next-generation web framework for node.js. Fork it as a starting point for your own server.

Stack:

  • MongoDB
  • Redis

Features:

  • Authentication using JSON Web Tokens
  • Push notifications using node-apn
  • REST API
  • User model

Requires node v7.6.0 or higher for async function support.

Install

git clone https://github.com/shanev/koa-ios-api && cd koa-ios-api

npm install

Create a .env file with environment variables specific to your app:

APN_AUTH_KEYPATH=xxx
APN_KEY_ID=xxx
APN_TEAM_ID=xxx
JWT_SECRET=secret
MONGO_URL=mongodb://localhost/your-app-db
MONGOOSE_DEBUG=false
REDIS_URL=redis://localhost:6379

Run

Start MongoDB:

npm run mongo

Start Redis (optional):

npm run redis

Start Koa:

npm start

Tests

npm test

About

Self-hosted API server for iOS apps, with push notifications and user accounts.

License:MIT License


Languages

Language:JavaScript 100.0%