GraphQl初探

GraphQL初探

1.什么是 GraphQL ?

A query language for your API

GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data. GraphQL provides a complete and understandable description of the data in your API, gives clients the power to ask for exactly what they need and nothing more, makes it easier to evolve APIs over time, and enables powerful developer tools.

GraphQL 是 Facebook 在2012年创建、2015年形成规范的一种应用层查询语言

[Read More]

Node.js之node-xlsx模块

Nodejs包之node-xlsx

支持读写Excel的node.js模块 1. node-xlsx: 基于Node.js解析excel文件数据及生成excel文件,仅支持xlsx格式文件; 2. excel-parser: 基于Node.js解析excel文件数据,支持xls及xlsx格式文件; 3. excel-export : 基于Node.js将数据生成导出excel文件,生成文件格式为xlsx; 4. node-xlrd: 基于node.js从excel文件中提取数据,仅支持xls格式文件。

[Read More]

Nodejs 之 File System 模块

Nodejs 之 File System 模块

fs模块为nodejs的核心模块之一,主要处理文件的读写、复制、s删除、重命名等操作。当需要使用该模块时,需要先导入该文件

[Read More]

json web token

json web token 前后端总结

一. 关于 Token 简介

1. 基于 Token 的 WEB 后端认证机制

几种常见的认证机制 >- HTTP Basic Auth

[Read More]

expressjs4.0之路由Router

express.Router

Express.js 4.0 有加入一個新的 Router 功能,它就像一個迷你的应用程序,可以让内部的路由改写更为方便,更具备弹性。

首先来看下express3.0版本的旧版路由定义的写法:

[Read More]