https://github.com/harshalslimaye/locos
Lightweight React like library for building modern UIs. :snowman:
https://github.com/harshalslimaye/locos
javascript-framework javascript-library jsx react react-like reactdom virtual-dom
Last synced: 3 months ago
JSON representation
Lightweight React like library for building modern UIs. :snowman:
- Host: GitHub
- URL: https://github.com/harshalslimaye/locos
- Owner: harshalslimaye
- License: mit
- Created: 2019-06-01T13:05:15.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T23:16:33.000Z (over 2 years ago)
- Last Synced: 2025-02-15T14:48:26.780Z (3 months ago)
- Topics: javascript-framework, javascript-library, jsx, react, react-like, reactdom, virtual-dom
- Language: JavaScript
- Homepage:
- Size: 2.1 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Locos
Locos (pronounced /loʊ-cɒs:/, like Low cost)is a lightweight React like library for building modern UIs. :snowman:## Features
- Functional components
- render props
- Lightweight
- No dependencies
- React like API## Installation
```
npm install locos
```## Usage
```js
import Locos from 'locos';const Greet = (props) => {
returnHello {props.name}!
};Locos.render(
,
document.querySelector('#root')
);
```