# aliez

> web server

Latest version **2.2.12** (published 2016-05-08) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install aliez
pnpm add aliez
yarn add aliez
bun add aliez
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 2.2.12 |
| Published | 2016-05-08 |
| First published | 2016-03-18 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | wallax |
| Maintainers | wallax |
| Keywords | web, server, aliez, http |

## Links

- npm: https://www.npmjs.com/package/aliez
- Repository: https://git.coding.net/wallax/aliez
- npm.io page: https://npm.io/package/aliez

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 2.2.12 (latest) — 2016-05-08
- 2.1.15 — 2016-05-02
- 2.1.13 — 2016-05-01
- 2.1.12 — 2016-05-01
- 1.0.5 — 2016-04-07
- 1.0.4 — 2016-04-06
- 1.0.2 — 2016-03-25
- 1.0.0 — 2016-03-18

## README

# aliez

可扩展的简易web服务器

**强行大改一波，还在测试中**

强行改变全部用法，所有功能模块化

## 使用方法

```
var aliez = require('aliez'),
	http = require('http'),
	Matcher = require('aliez-match');

var app = aliez(function(req, res){
	res.writeHead(200, {"content-type": "text/plain"});
	res.end("hello world");
});

// 使用中间件
app.use(Matcher);

http.createServer(app).listen(8080);
```

---
_Source: https://npm.io/package/aliez · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
