All Projects → forsigner → tie

forsigner / tie

Licence: MIT license
🧶A Node.js Framework based on TypeScript and Express.

Programming Languages

typescript
32286 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to tie

koa-mongoDB
😊😊Koa and mongoose build services
Stars: ✭ 24 (-20%)
Mutual labels:  koa
WebAppReader
基于 html5 、 Vue.js 、 Koa、Node.js 以及 EJS 的手机小说阅读器。使用 node.js 模拟后台数据,无实际后台,完全的前后端分离开发。
Stars: ✭ 15 (-50%)
Mutual labels:  koa
tsed
📐 Ts.ED is a Node.js and TypeScript framework on top of Express to write your application with TypeScript (or ES6). It provides a lot of decorators and guideline to make your code more readable and less error-prone.
Stars: ✭ 2,350 (+7733.33%)
Mutual labels:  koa
chatroom
💬chat
Stars: ✭ 56 (+86.67%)
Mutual labels:  koa
koa-whistle
This package is no longer maintained(该模块不再维护)
Stars: ✭ 11 (-63.33%)
Mutual labels:  koa
js
serverless your express/koa/restify apps
Stars: ✭ 21 (-30%)
Mutual labels:  koa
pupflare
A webpage proxy that request through Chromium (puppeteer) - can be used to bypass Cloudflare anti bot / anti ddos on any application (like curl)
Stars: ✭ 183 (+510%)
Mutual labels:  koa
koa-session-mongoose
Mongoose store for Koa sessions
Stars: ✭ 29 (-3.33%)
Mutual labels:  koa
koa-to-serverless
只需要改一行代码就能够让你的 Koa 框架应用在 Serverless 架构环境上运行
Stars: ✭ 28 (-6.67%)
Mutual labels:  koa
koa-xml-body
koa middleware to parse xml request body
Stars: ✭ 36 (+20%)
Mutual labels:  koa
koa-subdomain
Simple and lightweight Koa middleware to handle multilevel and wildcard subdomains
Stars: ✭ 23 (-23.33%)
Mutual labels:  koa
koa-shopify-auth
DEPRECATED Middleware to authenticate a Koa application with Shopify
Stars: ✭ 82 (+173.33%)
Mutual labels:  koa
graphql-ufc-api
GraphQL server for UFC's public API
Stars: ✭ 26 (-13.33%)
Mutual labels:  koa
numvalidate
Phone number validation REST API
Stars: ✭ 54 (+80%)
Mutual labels:  koa
universal-react-starter-kit
Universal React Starter Kit is an universal web application framework using koa, react, redux and webpack.
Stars: ✭ 13 (-56.67%)
Mutual labels:  koa
koa-ip-filter
koa middleware to filter request IPs or custom ID with glob patterns, array, string, regexp or matcher function. Support custom 403 Forbidden message and custom ID.
Stars: ✭ 23 (-23.33%)
Mutual labels:  koa
koa-react-redux-universal-boilerplate
[Unmaintained] A fullstack Koa + React + Redux Universal Boilerplate to speed up your development process.
Stars: ✭ 22 (-26.67%)
Mutual labels:  koa
nodejs-koa-blog
基于 Node.js Koa2 实战开发的一套完整的博客项目网站
Stars: ✭ 1,611 (+5270%)
Mutual labels:  koa
web-onefx-boilerplate
Full-stack React Framework for building web and backend
Stars: ✭ 34 (+13.33%)
Mutual labels:  koa
aotoo-hub
aotoo-hub是一套通用型前端脚手架,无技术栈依赖,聚焦于多人协作及工程化。帮助开发者快速产出项目。支持react/vue/小程序/node
Stars: ✭ 74 (+146.67%)
Mutual labels:  koa

TieJS

快速开始

使用 tie-cli 初始化应用 (选择 minimal-controller):

npm i -g tie-cli
tie create myapp #  选择 minimal-controller
cd myapp
npm run dev

项目结构如下:

.
├── home.controller.ts
├── package.json
└── tsconfig.json

启动成功后,然后访问浏览器:http://localhost:5001

这是一个最小化的 TieJS 应用,代码如下:

home.controller.ts

import { Controller, Get } from '@tiejs/controller'

@Controller()
export class HomeController {
  @Get('/')
  index() {
    return 'Hi Tie'
  }
}

文档

官方文档 tiejs.vercel.app.

入门教程 快速开始.

License

MIT License

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].