Code Monkey home page Code Monkey logo

www.biechu.com's Introduction

www.biechu.com 别处网

这是一个基于 Koa2 ejs ssr 后的轻量级 RESTful API Server 脚手架,支持 ES6。

注意: 因升级 Koa 版本至 2.3.0+,为配合相应的依赖项,故需要 Node.js 版本大于等于 v8.0.0(建议 v11.13.0),NPM 大于等于 v5.0.0。建议使用 yarn 代替 npm。

约定使用 JSON 格式传输数据,POST、PUT、DELET 方法支持的 Content-Type 为application/x-www-form-urlencoded、multipart/form-data、application/json可配置支持跨域。非上传文件推荐 application/x-www-form-urlencoded。通常情况下返回 application/json 格式的 JSON 数据。

可选用 redis 等非关系型数据库。考虑 RESTful API Server 的实际开发需要,这里通过 sequelize.js 作为 PostgreSQL, MySQL, MariaDB, SQLite, MSSQL 关系型数据库的 ORM,如无需关系型 ORM,npm remove sequelize -S,然后删除src/lib/sequelize.js文件。

此脚手架只安装了一些和 Koa2 不冲突的搭建 RESTful API Server 的必要插件,附带每一个插件的说明。采用 ESlint 进行语法检查。

因此脚手架主要提供 RESTful API,故暂时不考虑前端静态资源处理,只提供静态资源访问的基本方法便于访问用户上传到服务器的图片等资源。基本目录结构与 vue-cli 保持一致,可配合 React、AngularJS、Vue.js 等前端框架使用。在 Cordova/PhoneGap、Electron 中使用时需要开启跨域功能。

免责声明: 此脚手架仅为方便开发提供基础环境,任何人或组织均可随意克隆使用,使用引入的框架需遵循原作者规定的相关协议(部分框架列表及来源地址在下方)。项目维护者均不对采用此脚手架产生的任何后果负责。

基于 Vue 2,Webpack 4,Koa 2 的 SSR 脚手架:https://github.com/yi-ge/Vue-SSR-Koa2-Scaffold

开发使用说明

git clone https://github.com/yi-ge/koa2-API-scaffold.git

cd mv koa2-API-scaffold
npm install
npm run dev # 可执行npm start跳过ESlint检查。

访问: http://127.0.0.1:3000/

调试说明

npm run dev --debug

Or

npm start --debug

支持 Node.js 原生调试功能:https://nodejs.org/api/debugger.html

开发环境部署

生成 node 直接可以执行的代码到 dist 目录:

npm run build
npm run production # 生产模式运行

# Or

node dist/app.js

PM2 部署说明

提供了 PM2 部署 RESTful API Server 的示例配置,位于“pm2.js”文件中。

pm2 start pm2.js

PM2 配合 Docker 部署说明: http://pm2.keymetrics.io/docs/usage/docker-pm2-nodejs/

Docker 部署说明

docker pull node
docker run -itd --name RESTfulAPI -v `pwd`:/usr/src/app -w /usr/src/app node node ./dist/app.js

通过'docker ps'查看是否运行成功及运行状态

Linux/Mac 直接后台运行生产环境代码

有时候为了简单,我们也这样做:

nohup node ./dist/app.js > logs/out.log &

查看运行状态(如果有'node app.js'出现则说明正在后台运行):

ps aux|grep app.js

查看运行日志

cat logs/out.log

监控运行状态

tail -f logs/out.log

配合 Vue-cli 部署说明

Vue-cli(Vue2)运行'npm run build'后会在'dist'目录中生成所有静态资源文件。推荐使用 Nginx 处理静态资源以达最佳利用效果,然后通过上述任意一种方法部署 RESTful API 服务器。前后端是完全分离的,请注意 Koa2 RESTful API Server 项目中 config/main.json 里面的跨域配置。

推荐的 Nginx 配置文件:

server
    {
        listen 80;
        listen [::]:80;
        server_name abc.com www.abc.com; #绑定域名
        index index.html index.htm;
        root  /www/app/dist; #Vue-cli编译后的dist目录

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log off; #访问日志路径
    }

Docker 中 Nginx 运行命令(将上述配置文件任意命名放置于 nginx_config 目录中即可):

docker run -itd -p 80:80 -p 443:443 -v `pwd`/nginx_config:/etc/nginx/conf.d nginx

关于 Token 使用的特别说明(JWT 身份认证)

src\app.js目录中有一行代码: .use(jwt({ secret: publicKey }).unless({ path: [/^\/public|\/user\/login|\/assets/] }))

在 path 里面的开头路径则不进行身份认证,否则都将进行 � 鉴权。

前端处理方案:

import axios from 'axios'
import {getToken} from './tool'

const DevBaseUrl = 'http://127.0.0.1:8080'
const ProdBashUrl = 'https://xxx.xxx'

let config = {
	baseURL: process.env.NODE_ENV !== 'production' ? DevBaseUrl : ProdBashUrl // 配置API接口地址
}

let token = getToken()
if (token) {
	config.headers = {Authorization: 'Bearer ' + token}
}

let request = axios.create(config)

// http request 拦截器
axios.interceptors.request.use(
	config => {
		if (window) {
			let token = getToken()
			if (token) {
				// 判断是否存在token,如果存在的话,则每个http header都加上token
				config.headers.Authorization = `Bearer ${token}`
			}
		}
		// if (config.method === 'get') {
		//   config.url = config.url + 'timestamp=' + Date.now().toString()
		// }
		return config
	},
	err => {
		return Promise.reject(err)
	}
)

export default request

tool.js文件

// 写 cookies
export let setCookie = function setCookie(name, value, time) {
	if (time) {
		let strsec = getsec(time)
		let exp = new Date()
		exp.setTime(exp.getTime() + parseInt(strsec))
		document.cookie = name + '=' + escape(value) + ';expires=' + exp.toGMTString()
	} else {
		document.cookie = name + '=' + escape(value)
	}
}

// 读 cookies
export let getCookie = function (name) {
	let reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)')
	let arr = document.cookie.match(reg)
	return arr ? unescape(arr[2]) : null
}

// 删 cookies
export let delCookie = function (name) {
	var exp = new Date()
	exp.setTime(exp.getTime() - 1)
	var cval = getCookie(name)
	if (cval != null) {
		document.cookie = name + '=' + cval + ';expires=' + exp.toGMTString()
	}
}

// 获取Token
export let getToken = function () {
	if (window.sessionStorage && window.sessionStorage.Bearer) {
		return window.sessionStorage.Bearer
	} else if (window.localStorage && window.localStorage.Bearer) {
		return window.localStorage.Bearer
	} else if (window.document.cookie) {
		return getCookie('Bearer')
	}
}

// 设置Token
export let setToken = function (token, rememberTime) {
	if (window.sessionStorage) {
		window.sessionStorage.Bearer = token
	}

	if ((rememberTime && window.localStorage) || !window.sessionStorage) {
		window.localStorage.Bearer = token
	}

	if (window.document.cookie && !window.sessionStorage && !window.localStorage) {
		if (rememberTime) {
			setCookie('Bearer', token, rememberTime)
		} else {
			setCookie('Bearer', token)
		}
	}
}

// 删除Token
export let delToken = function () {
	if (window.sessionStorage && window.sessionStorage.Bearer) {
		window.sessionStorage.removeItem('Bearer')
	}

	if (window.localStorage && window.localStorage.Bearer) {
		window.localStorage.removeItem('Bearer')
	}

	if (window.document.cookie) {
		delCookie('Bearer')
	}
}

大概原理: 通过某个 API(通常是登录 API)获取成功后的 Token,存于本地,然后每次请求的时候在 Header 带上Authorization: "Bearer " + token,通常情况下无需担心本地 Token 被破解。

引入插件介绍

引入插件的版本将会持续更新

引入的插件: koa@2 koa-body@2 koa-router@next koa-static2 koa-compose require-directory babel-cli babel-register babel-plugin-transform-runtime babel-preset-es2015 babel-preset-stage-2 gulp gulp-eslint eslint eslint-config-standard eslint-friendly-formatter eslint-plugin-html eslint-plugin-promise nodemailer promise-mysql 等

koa2: HTTP 框架  Synopsis: HTTP framework.  From: https://github.com/koajs/koa v2

koa-body: body 解析器  Synopsis: A full-feature koa body parser middleware.  From: https://github.com/dlau/koa-body

koa-router: Koa 路由  Synopsis: Router middleware for koa.  From: https://github.com/alexmingoia/koa-router/tree/master/

koa-static2: 静态资源中间件  Synopsis: Middleware for Koa2 to serve a folder under a name declared by user.  From: https://github.com/Secbone/koa-static2

koa-compose: 多个中间件组合成一个  Synopsis: Compose several middleware into one.  From: https://github.com/koajs/compose

require-directory: 递归遍历指定目录  Synopsis: Recursively iterates over specified directory.  From: https://github.com/troygoode/node-require-directory

babel-cli: Babel 编译 ES6 代码为 ES5 代码  Synopsis: Babel is a JavaScript compiler, ES6 to ES5.  From: https://github.com/babel/babel/tree/master/packages/babel-cli

babel-register: Babel 开发环境实时编译 ES6 代码  Synopsis: Babel hook.  From: https://github.com/babel/babel/tree/master/packages/babel-cli

babel-plugin-transform-runtime: Babel 配置 ES6 的依赖项 babel-preset-es2015: 同上 babel-preset-stage-2: 同上

gulp: 基于流的自动化构建工具  Synopsis: Gulp is a toolkit for automating painful or time-consuming tasks.  From: https://github.com/gulpjs/gulp

gulp-eslint: gulp 的 ESLint 检查插件  Synopsis: A gulp plugin for ESLint.  From: https://github.com/adametry/gulp-eslint

gulp-nodemon: 修改 JS 代码后自动重启  Synopsis: nodemon will watch the files in the directory in which nodemon was started, and if any files change, nodemon will automatically restart your node application.  From: https://github.com/remy/nodemon

eslint: JavaScript 语法检查工具  Synopsis: A fully pluggable tool for identifying and reporting on patterns in JavaScript.  From:

eslint-config-standard: 一个 ESlint 配置 Synopsis: ESLint Shareable Config for JavaScript Standard Style.  From: https://github.com/feross/eslint-config-standard

eslint-friendly-formatter: 使得 ESlint 提示在 Sublime Text 或 iterm2 中更友好,Atom 也有对应的 ESlint 插件。  Synopsis: A simple formatter/reporter for ESLint that's friendly with Sublime Text and iterm2 'click to open file' functionality  From: https://github.com/royriojas/eslint-friendly-formatter

eslint-plugin-html: 检查 HTML 文件中的 JS 代码规范  Synopsis: An ESLint plugin to extract and lint scripts from HTML files.  From: https://github.com/BenoitZugmeyer/eslint-plugin-html

eslint-plugin-promise: 检查 JavaScript promises  Synopsis: Enforce best practices for JavaScript promises. From: https://github.com/xjamundx/eslint-plugin-promise

eslint-plugin-promise: ESlint 依赖项  Synopsis: ESlint Rules for the Standard Linter. From: https://github.com/xjamundx/eslint-plugin-standard

nodemailer: 发送邮件  Synopsis: Send e-mails with Node.JS.  From: https://github.com/nodemailer/nodemailer

promise-mysql: 操作 MySQL 数据库依赖  Synopsis: Promise Mysql.  From: https://github.com/lukeb-uk/node-promise-mysql

sequelize: 关系型数据库 ORM  Synopsis: Sequelize is a promise-based ORM for Node.js.  From: https://github.com/sequelize/sequelize

mysql: MySQL 库  Synopsis: A pure node.js JavaScript Client implementing the MySql protocol.  From: https://github.com/mysqljs/mysql

支持 Koa2 的中间件列表:https://github.com/koajs/koa/wiki

其它经常配合 Koa2 的插件:

koa-session2: Session 中间件  Synopsis: Middleware for Koa2 to get/set session.  From: https://github.com/Secbone/koa-session2

koa-nunjucks-2: 一个好用的模版引擎,可用于前后端,nunjucks:https://github.com/mozilla/nunjucks

koa-favicon: Koa 的 favicon 中间件:https://github.com/koajs/favicon

koa-server-push: HTTP2 推送中间件:https://github.com/silenceisgolden/koa-server-push

koa-convert: 转换旧的中间件支持 Koa2  Synopsis: Convert koa generator-based middleware to promise-based middleware.  From: https://github.com/koajs/convert

koa-logger: 请求日志输出,需要配合上面的插件使用  Synopsis: Development style logger middleware for Koa.  From: https://github.com/koajs/logger

koa-onerror: Koa 的错误拦截中间件,需要配合上面的插件使用:https://github.com/koajs/onerror

koa-multer: 处理数据中间件  Synopsis: Multer is a node.js middleware for handling multipart/form-data for koa.  From: https://github.com/koa-modules/multer

目录结构说明

.
├── README.md
├── .babelrc                # Babel 配置文件
├── .editorconfig           # 编辑器风格定义文件
├── .eslintignore           # ESlint 忽略文件列表
├── .eslintrc.js            # ESlint 配置文件
├── .gitignore              # Git 忽略文件列表
├── gulpfile.js             # Gulp配置文件
├── package.json            # 描述文件
├── pm2.js                  # pm2 部署示例文件
├── build                   # build 入口目录
│   └── dev-server.js       # 开发环境 Babel 实时编译入口
├── src                     # 源代码目录,编译后目标源代码位于 dist 目录
│   ├── app.js              # 入口文件
│   ├── config.js           # 主配置文件(*谨防泄密!)
│   ├── plugin              # 插件目录
│       └── smtp_sendemail  # 示例插件 - 发邮件
│   ├── tool                # 工具目录
│       ├── PluginLoader.js # 插件引入工具
│       └── Common.js       # 示例插件 - 发邮件
│   ├── lib                 # 库目录
│   ├── controllers         # 控制器
│   ├── models              # 模型
│   ├── routes              # 路由
│   └── services            # 服务
├── assets                  # 静态资源目录
└── logs                    # 日志目录

集成 NUXT 请求时身份认证说明

import Vue from 'vue'
import axios from 'axios'

const DevBaseUrl = 'http://127.0.0.1:3000'
const ProdBashUrl = 'https://api.xxx.com'

let config = {
  baseURL: process.env.NODE_ENV !== 'production' ? DevBaseUrl : ProdBashUrl // 配置API接口地址
}

if (process.env.VUE_ENV !== 'server') {
  let token = getToken() // 此函数自行实现
  if (token) {
    config.headers = {Authorization: 'Bearer ' + token}
  }
}

let request = axios.create(config)

// http request 拦截器
axios.interceptors.request.use(
  (config) => {
    if (window) {
      let token = getToken()
      if (token) { // 判断是否存在token,如果存在的话,则每个http header都加上token
        config.headers.Authorization = `Bearer ${token}`
      }
    }
    return config
  },
  (err) => {
    return Promise.reject(err)
  }
)

Vue.prototype.$request = request

各类主流框架调用 RESTful API 的示例代码(仅供参考)

AngularJS (Ionic 同)

$http({
	method: 'post',
	url: 'http://localhost:3000/xxx',
	data: {para1: 'para1', para2: 'para2'},
	headers: {
		'Content-Type': 'application/x-www-form-urlencoded'
	}
})
	.success(function (data) {
		// do something
	})
	.error(function (data) {
		// do something
	})

jQuery

$.ajax({
	cache: false,
	type: 'POST',
	url: 'http://localhost:3000/xxx',
	data: {
		para1: para1
	},
	async: false,
	dataType: 'json',
	success: function (result) {},
	error: function (err) {
		console.log(err)
	}
})

// 上传文件
//创建FormData对象
var data = new FormData()
//为FormData对象添加数据
//
$.each($('#inputfile')[0].files, function (i, file) {
	data.append('upload_file', file)
})
$.ajax({
	url: 'http://127.0.0.1:3000/api/upload_oss_img_demo',
	type: 'POST',
	data: data,
	cache: false,
	contentType: false, //不可缺
	processData: false, //不可缺
	success: function (data) {
		console.log(data)
		if (data.result == 'ok') {
			$('#zzzz').attr('src', data.img_url)
		}
	}
})

MUI

mui.ajax({
	url: 'http://localhost:3000/xxx',
	dataType: 'json',
	success: function (data) {},
	error: function (data) {
		console.log('error!')
	}
})

JavaScript

var xhr = new XMLHttpRequest()
xhr.open('POST', 'http://localhost:3000/xxx', true) //POST或GET,true(异步)或 false(同步)
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded')
xhr.withCredentials = true
xhr.onreadystatechange = function () {
	if ((obj.readyState == 4 && obj.status == 200) || obj.status == 304) {
		var gotServices = JSON.parse(xhr.responseText)
	} else {
		console.log('ajax失败了')
	}
}
xhr.send({para1: para1})

vue-resource

https://github.com/pagekit/vue-resource

// global Vue object
Vue.http.post('/someUrl', [body], {
  headers: {'Content-type', 'application/x-www-form-urlencoded'}
}).then(successCallback, errorCallback)

fetch

https://github.com/github/fetch

fetch('/users', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    name: 'Hubot',
    login: 'hubot',
  })
}).then(function(response) {
  // response.text()
}).then(function(body) {
  // body
})

// 文件上传
var input = document.querySelector('input[type='file']')

var data = new FormData()
data.append('file', input.files[0])
data.append('user', 'hubot')

fetch('/avatars', {
  method: 'POST',
  body: data
})

superagent

https://github.com/visionmedia/superagent

request.post('/user')
 .set('Content-Type', 'application/json')
 .send('{'name':'tj','pet':'tobi'}')
 .end(callback)

request

https://github.com/request/request

request.post('/api').form({key:'value'}), function(err,httpResponse,body){ /* ... */ })

在 React 中可以将上述任意方法其置于 componentDidMount()中,Vue.js 同理。

彻底移除 ESlint 方法

删除 package.json 的 devDependencies 中所有 eslint 开头的插件,根目录下的“.eslintignore、.eslintrc.js”文件,并且修改 package.json 的 dev 为:

'dev': 'gulp start'

删除 gulpfile.js 中的 lint、eslint_start 两个任务,并且把 default 改为“gulp.task('default', ['start']”。

更新说明

v1.0.4 2020 年 04 月 10 日 17:46:51

  1. 升级依赖版本。

v1.0.3 2019 年 9 月 11 日 13:21:56

  1. 升级依赖版本。

v1.0.2 2019 年 06 月 07 日 15:15:37

  1. 解决WS-2019-0064警告,升级依赖项版本。
  2. 规范路由引入方式,增加不同写法的示例。

v1.0.1 2019 年 06 月 02 日 21:54:00

  1. 添加 Dockerfile

v1.0.0 2019 年 04 月 07 日 21:19:59

  1. 升级依赖项版本(node11.13.0)。
  2. 添加 Jest。

v0.2.6 2018 年 03 月 24 日 22:16:43

  1. 升级依赖项版本(node9.9.0)。

v0.2.5 2018 年 01 月 13 日 10:37:29

  1. 升级依赖项版本(node9.3.0)。
  2. 添加了 Token 使用说明。

v0.2.4 2017 年 12 月 01 日 14:16:03

  1. 升级依赖项版本(node9.2.0)。

v0.2.3 2017 年 10 月 23 日 23:26:56

  1. 升级依赖项版本(node8.7.0)。

v0.2.2 2017 年 09 月 17 日 17:45:07

  1. 升级依赖项版本(在 node8.5.0 测试)。

v0.2.1 2017 年 07 月 19 日 19:38:19

  1. 移除 MySQL 模块(重复了)。
  2. 添加更详细的说明。

v0.2 2017 年 07 月 16 日 22:48:34

  1. 升级 koa 为 2.3.0 版本。
  2. 将 koa-session2 替换为 koa-jwt,添加了 jsonwebtoken。
  3. 升级了以下依赖的版本: [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected]

v0.1 2017 年 04 月 07 日 11:46:02

  1. 升级 koa 为 2.2.0 版本。
  2. 升级了以下依赖版本到“建议版本”:
依赖项                     原版本  建议版本 最新版本        项目
eslint                   3.18.0  3.19.0  3.19.0  koa2-API-scaffold
eslint-plugin-standard    2.1.1   3.0.1   3.0.1  koa2-API-scaffold
koa-router                7.1.0   7.1.1   7.1.1  koa2-API-scaffold
promise-mysql             3.0.0   3.0.1   3.0.1  koa2-API-scaffold
sequelize                3.30.2  3.30.4  3.30.4  koa2-API-scaffold

v0.0.9_1 2017 年 03 月 30 日 15:51:03

  1. 完善了 gulpfile.js,不是重要的更新。

v0.0.9 2017 年 03 月 27 日 17:25:58

  1. 修改了src/controllers/upload.js文件,添加了上传文件示例代码。
  2. 修复了src/lib/mysql.js引用路径错误的 BUG。
  3. 修改了src/controllers/api.jsGET 参数获取的示例。

v0.0.8 2017 年 03 月 01 日 23:03:44 1、在 src/app.js 18 行 后添加了

    jsonLimit: '20mb',
    formLimit: '10mb',
    textLimit: '20mb',

以免表单过长导致提交失败。

v0.0.7 2017 年 02 月 18 日 19:01:48 1、修改了 index.js、config.js(详情请看 github 记录),完善了对跨域的处理。 更新建议:对应 github 修改记录同步修改,方便将来部署调试。

v0.0.6 2017 年 02 月 17 日 21:17:23 1、修改了 src/lib/sequelize.js 文件,添加了对 utf8mb4 的支持(要求 MySQL 版本>5.5)。

v0.0.5 2017 年 02 月 12 日 01:25:34 1、修改了 gulpfile.js 文件,在更改文件热重启的时候无需检查全部文件,仅检查改动文件,开发速度更快。 2、修改了 package.json 中"start"项的值为"gulp nodemon"配合 gulpfile.js 文件的修改。

v0.0.4 2017 年 02 月 07 日 15:57:17 1、修改了部分配置文件的配置方法,使之更为规范(老版本用户无须理会,对程序没有影响)。 2、修改了 eslintrc.js 文件中的 JavaScript 版本配置,改为 ES8,兼容 async、await。 3、修改 gulpfile.js 文件第 12 行,检查src/**/*.js文件。 "# www.biechu.com"

www.biechu.com's People

Contributors

starpt avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.