@wox/history
v1.0.5
Published
The history module of wox
Downloads
4
Readme
@wox / history
浏览器history模型,用来处理通用的hashchange
与popstate
的模式。
Install
npm i @wox/history
Usage
它有2个模式,我们根据需要选择其中一种即可。
import { hashChange, popState } from '@wox/history';
createServer
创建一个基于web的服务。
import { hashChange } from '@wox/history';
const history = new hashChange();
history.createServer((req, res) => {
// req: request 请求对象
// res: response 输出对象
});
listen
监听web服务的history变化
import { hashChange } from '@wox/history';
const history = new hashChange();
history.createServer((req, res) => {
// req: request 请求对象
// res: response 输出对象
console.log(req);
}).listen();