https://github.com/nolyme/oly
A set of libraries to create well-written TypeScript applications with Koa and React.
https://github.com/nolyme/oly
koa nodejs oly react typescript
Last synced: 23 days ago
JSON representation
A set of libraries to create well-written TypeScript applications with Koa and React.
- Host: GitHub
- URL: https://github.com/nolyme/oly
- Owner: nolyme
- License: mit
- Created: 2017-04-19T20:46:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T04:13:46.000Z (over 2 years ago)
- Last Synced: 2025-03-24T07:41:57.168Z (about 1 month ago)
- Topics: koa, nodejs, oly, react, typescript
- Language: TypeScript
- Homepage: https://nolyme.github.io/oly
- Size: 4.07 MB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
OLY
oly is a set of libraries to create well-written
TypeScript
applications with Node.js® and browsers.
This set is based on popular projects, such as
Koa
and
React.
```ts
import { Kernel } from "oly";Kernel
.create(/* store */)
.with(/* services & providers */)
.start()
.catch(console.error);
```### Getting started
| | |
|----------------------------------------------------:|----------------------------------------|
| [CORE](https://nolyme.github.io/oly/#/m/oly) | Dependency injection, store and event emitter in one place. |
| [API](https://nolyme.github.io/oly/#/m/oly-api) | REST API with koa and decorators. |
| [REACT](https://nolyme.github.io/oly/#/m/oly-react) | React, SSR and Routing. |