All Projects → iamdanielyin → ibird

iamdanielyin / ibird

Licence: Apache-2.0 License
A lightweight and flexible web development framework.✨🚀✨

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to ibird

wx phoneBook
微信小程序-通讯录,一个非常简单的入门级的微信小程序
Stars: ✭ 23 (-68.92%)
Mutual labels:  koa
nfw
A jsonapi boilerplate for @nfw-core with mikro-orm
Stars: ✭ 23 (-68.92%)
Mutual labels:  koa
koa-router-version
Semantic Versioning routing for Koa
Stars: ✭ 19 (-74.32%)
Mutual labels:  koa
slides
No description or website provided.
Stars: ✭ 27 (-63.51%)
Mutual labels:  koa
secondhand-deal
A campus secondhand trading system based on the vue.js + stylus + koa2 + sequelize ORM + mysql, and typescript is still learning to migrate.🍌
Stars: ✭ 21 (-71.62%)
Mutual labels:  koa
dashboard
📺🐝OpenPitrix UI
Stars: ✭ 29 (-60.81%)
Mutual labels:  koa
ravel
Forge past a tangle of node.js modules. Make a cool app.
Stars: ✭ 19 (-74.32%)
Mutual labels:  koa
blog-backend
前后端分离实践----基于Koa2框架博客后端
Stars: ✭ 54 (-27.03%)
Mutual labels:  koa
giog
It's based on githud issues and built with Vue 2.x, vue-router & vuex with server-side rendering by koa
Stars: ✭ 14 (-81.08%)
Mutual labels:  koa
graphql-typeorm-koa-workshop
Demo GraphQL API server
Stars: ✭ 36 (-51.35%)
Mutual labels:  koa
vue-cms
VUE-CMS. Proudly Using ES7, Vue 2, Koa 2, Webpack 4, Babel 7 And Mocha
Stars: ✭ 16 (-78.38%)
Mutual labels:  koa
polix
🚀 Node.js Web Framework
Stars: ✭ 32 (-56.76%)
Mutual labels:  koa
react-isomorphic-bundle
React Redux Universal (isomorphic) bundle
Stars: ✭ 53 (-28.38%)
Mutual labels:  koa
Agile-Server
A simple, fast, complete Node.js server solution, based on KOA. 简单快速的 、性能强劲的、功能齐全的 node 服务器解决方案合集,基于 KOA。
Stars: ✭ 24 (-67.57%)
Mutual labels:  koa
co-wechat-payment
Wechat payment lib for node.js koa framework.
Stars: ✭ 20 (-72.97%)
Mutual labels:  koa
redux-react-koa-isomorphic-counter-example
Isomorphic port of the redux counter app
Stars: ✭ 77 (+4.05%)
Mutual labels:  koa
route-decorators
ES7 decorators that simplify Koa and Express route creation
Stars: ✭ 71 (-4.05%)
Mutual labels:  koa
lin-cms-koa-core
A simple and practical CMS implememted by koa
Stars: ✭ 42 (-43.24%)
Mutual labels:  koa
koa2-winston
koa2 version winston logger like express-winston
Stars: ✭ 37 (-50%)
Mutual labels:  koa
leizm-web
现代的 Web 中间件基础框架,完美支持 TypeScript,构建可维护的大型 Web 项目
Stars: ✭ 40 (-45.95%)
Mutual labels:  koa

English | 简体中文

ibird

NPM version Build Status NPM downloads Dependencies

A lightweight and flexible web development framework.

Getting Started

Prerequisites

Install ibird from npm

With yarn:

yarn add ibird

or alternatively using npm:

npm install --save ibird

Writing Code

We can put this code in a file named index.js

const app = require('ibird').newApp();

// response
app.get('/', ctx => {
  ctx.body = `Hello ibird.`;
});

app.play();

If you run this with:

$ node index.js

You should see the ibird response printed out:

$ Listen and serve on 0.0.0.0:3000

Congratulations - You've just created an application using ibird!

Next Steps

We prepared a wiki page. You can find tons of useful things there.

Contributing

We actively welcome pull requests.

Changelog

Changes are tracked as GitHub releases.

License

ibird is Apache-2.0-licensed.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].