UNPKG

react-redux-express

Version:

React fullstack generator with express,redux, and some components.

9 lines (7 loc) 213 B
/** * Created by Zhengfeng Yao on 16/8/24. */ import http from 'http'; export default async (url) => new Promise((resolve, reject) => http.get(url, res => resolve(res)).on('error', err => reject(err)) );