1.11.0 • Published 2 years ago
@kult/core v1.11.0
@kult/core
Kult core is a open-source framework for developing NodeJs applications and API's.
Have a look at our docs for more information.
Installation
yarn:
yarn add @kult/core @kult/cli
NPM:
npm i @kult/core @kult/cli
Usage
Project folder structure
src/app
/models
/controllers
src/config
server.ts
database.ts
plugins.ts
src/plugins
src/index.ts
Application:
import { Application } from '@kult/core';
const app = new Application();
app.start();
Controllers:
import {
Controller,
Get,
Application,
ControllerBase,
Context,
} from '@kult/core';
@Controller('/users')
class UserController extends ControllerBase {
constructor(app: Application) {
super(app);
}
@Get('/find')
find(ctx: Context) {
return 'Hello World';
}
@Post('/update')
post(ctx: Context) {
return 'Hello World';
}
@Put('/create')
put(ctx: Context) {
return 'Hello World';
}
@Delete('/remove')
delete(ctx: Context) {
return 'Hello World';
}
}
export default UserController;
Create a plugin:
import { Application, Plugin, PluginBase } from '@kult/core';
@Plugin('Logger')
export default class Logger extends PluginBase {
constructor(app: Application) {
super(app);
}
}
Environment Variables
Server:
PORT=3000
Database:
DATABASE_TYPE='postgres'
DATABASE_HOST='localhost'
DATABASE_PORT=5444
DATABASE_USERNAME='admin'
DATABASE_PASSWORD='admin'
DATABASE_DATABASE='development'
Database Models
import { Column, Entity } from 'typeorm';
@Entity()
export default class User {
@Column({ primary: true })
id: number;
@Column()
name: string;
@Column()
description: string;
@Column()
filename: string;
@Column()
views: number;
@Column()
isPublished: boolean;
}
Model Respositories
import {
Controller,
Get,
Application,
ControllerBase,
Context,
} from '@kult/core';
import User from '../models/user.model';
@Controller('/users')
class UserController extends ControllerBase {
constructor(app: Application) {
super(app);
}
@Get('/find')
async find(ctx: Context) {
const { datasource } = this.app.database;
const users = await datasource?.getRepository(User).find();
return users;
}
}
export default UserController;
Running
yarn:
yarn dev
NPM:
npm run dev
Building
yarn:
yarn build
NPM:
npm run build
Examples
Community
Built Using
Authors
- @michael616kriel - Idea & Initial work
See also the list of contributors who participated in this project.
1.11.0
2 years ago
1.2.0
2 years ago
1.1.0
2 years ago
1.0.0
2 years ago
1.9.0
2 years ago
1.8.0
2 years ago
1.7.0
2 years ago
1.6.0
2 years ago
1.5.0
2 years ago
1.4.0
2 years ago
1.3.0
2 years ago
0.0.30
2 years ago
0.0.31
2 years ago
0.0.29
2 years ago
1.10.0
2 years ago
0.0.28
2 years ago
0.0.27
2 years ago
0.0.26
2 years ago
0.0.25
2 years ago
0.0.24
2 years ago
0.0.23
2 years ago
0.0.22
2 years ago
0.0.21
2 years ago
0.0.20-beta.1
2 years ago
0.0.20
2 years ago
0.0.19
2 years ago
0.0.18
2 years ago
0.0.16
2 years ago
0.0.13
2 years ago
0.0.12
2 years ago
0.0.11
2 years ago
0.0.10
2 years ago
0.0.9
2 years ago
0.0.8
2 years ago
0.0.7
2 years ago
0.0.6
2 years ago
0.0.5
2 years ago
0.0.4
2 years ago
0.0.3
2 years ago
0.0.2
2 years ago
0.0.1
2 years ago