All Projects → kitesjs → kites

kitesjs / kites

Licence: MIT license
Template-based Web Application Framework

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to kites

Nest
A progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications on top of TypeScript & JavaScript (ES6, ES7, ES8) 🚀
Stars: ✭ 42,981 (+84176.47%)
Mutual labels:  javascript-framework, nodejs-framework, typescript-framework
Core
🚀 The Node.js Framework highly focused on developer ergonomics, stability and confidence
Stars: ✭ 11,697 (+22835.29%)
Mutual labels:  nodejs-framework, typescript-framework
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 (+4507.84%)
Mutual labels:  nodejs-framework, typescript-framework
nanobox-express
Quickstart for Express on Nanobox
Stars: ✭ 13 (-74.51%)
Mutual labels:  javascript-framework, nodejs-framework
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: ✭ 1,941 (+3705.88%)
Mutual labels:  nodejs-framework, typescript-framework
Webster
a reliable high-level web crawling & scraping framework for Node.js.
Stars: ✭ 364 (+613.73%)
Mutual labels:  javascript-framework, nodejs-framework
Hyperdom
A fast, feature rich and simple framework for building dynamic browser applications.
Stars: ✭ 161 (+215.69%)
Mutual labels:  javascript-framework
fano
Pascal web application framework
Stars: ✭ 90 (+76.47%)
Mutual labels:  web-application-framework
Reactjs Interview Questions
List of top 500 ReactJS Interview Questions & Answers....Coding exercise questions are coming soon!!
Stars: ✭ 17,978 (+35150.98%)
Mutual labels:  javascript-framework
Vivid
a JavaScript library which is built to easily customize and use the SVG Icons with a blaze.
Stars: ✭ 1,797 (+3423.53%)
Mutual labels:  javascript-framework
InDiv
an angular like web mvvm framework.一个类 angular 前端框架。https://dimalilongji.github.io/InDiv
Stars: ✭ 88 (+72.55%)
Mutual labels:  typescript-framework
iris
Lightweight Component Model and Messaging Framework based on ØMQ
Stars: ✭ 50 (-1.96%)
Mutual labels:  lightweight-framework
Friendup
Friend OS is the Internet Operating System for any device, running on posix compatible hosts. Also known as the Friend Unifying Platform.
Stars: ✭ 241 (+372.55%)
Mutual labels:  javascript-framework
Woowahanjs
웹 어플리케이션 개발을 위한 JS프레임워크
Stars: ✭ 171 (+235.29%)
Mutual labels:  javascript-framework
CoCreate-dashboard
A simple dashboard component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.
Stars: ✭ 20 (-60.78%)
Mutual labels:  javascript-framework
A Keyboard
javascript keyboard
Stars: ✭ 160 (+213.73%)
Mutual labels:  javascript-framework
Modern.JS
모던 자바스크립트 라이브러리/프레임워크 × KIPFA(한국인터넷전문가협회)
Stars: ✭ 16 (-68.63%)
Mutual labels:  javascript-framework
Kunafa
Easy to use, high level framework in Kotlin for front-end web-development
Stars: ✭ 148 (+190.2%)
Mutual labels:  javascript-framework
Metal.js
Build UI components in a solid, flexible way
Stars: ✭ 227 (+345.1%)
Mutual labels:  javascript-framework
kikder-dating-swipe-app
❤️ Kik App, you know? 💑 Kikder™ is a dating webapp that integrates the Kik, uses the HorOrNot game and the Tinder swipe. The F.A.S.T. Game Approach! The web app uses a custom lightweight MVC framework.
Stars: ✭ 21 (-58.82%)
Mutual labels:  lightweight-framework

kites

Template-based Web Application Framework

Join the chat at https://gitter.im/nodevn/kites npm version npm downloads Travis

Kites is a framework providing dynamic applications assembling and Template-based extracting. Namely it contains a lot of templates and extensions to help building a new application quickly.

Features

  • Extension as a feature
  • Autodiscover extensions
  • Rich decorators system
  • Event-driven programming
  • Reactive programming
  • Storage mutiple providers
  • Micro frontends development

Installation

# install kites cli
$ npm install -g @kites/cli

# init a project
kites init my-project

# move to project workspace
cd my-project

# install dependencies
npm install

# start development
npm start

To change environment use cmd set NODE_ENV=development or use options your IDE provides. If you don't specify node environment kites assumes development as default.

Example

The application below simply prints out a greeting: Hello World!

TypeScript version:

import {engine} from '@kites/core';

async function bootstrap() {
  const app = await engine().init();
  app.logger.info('Hello World!');
}

bootstrap();

JavaScript version:

const kites = require('@kites/core');

kites.engine().init().then((app) => {
  app.logger.info('Hello World!');
});

Extensions

Kites is an eco-system and has many modules which can be assembled into a larger application. You are welcome to write your own extension or even publish it to the community.

Auto discovery

Kites has an option to allow the application auto discover extensions in the directory tree. This means kites will searches for files kites.config.js which describes the extensions and applies all the extensions that are found automatically.

This is fundamental principle for allowing extensions as plugins to be automatically plugged into the system. The application completed with minimalist lines of code, but very powerful!

import {engine} from '@kites/core';

async function bootstrap() {
  // let kites autodiscover the extensions
  const app = await engine({ discover: true }).init();
  app.logger.info('A new kites started!');
}

bootstrap();

Kites extensions auto discovery might slows down the startup and can be explicitly override by using use function. The following code has a slightly complicated configuration for each extension which we want to use.

import {engine} from '@kites/core';
import express from '@kites/express';

async function bootstrap() {
  const app = await engine({
      discover: false,
    })
    .use(express())
    .on('express:config', app => {
      app.get('/hi', (req, res) => res.send('hello!'));
    })
    .init();

  app.logger.info(`Let's browse http://localhost:3000/hi`);
}

// let kites fly!
bootstrap();

Templates

Here is the list of built-in templates and their implementation status:

  • starter: Kites Project Starter with Typescript (default)
  • docsify: Template webserver for documentation site generator
  • chatbot: Template for generating an AI Chatbot

More templates, checkout issue #1.

Documentation

License

MIT License

Copyright (c) 2018 Nhữ Bảo Vũ

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