Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stayradiated/reactwm
A minimal window manager built using React.
https://github.com/stayradiated/reactwm
Last synced: 2 months ago
JSON representation
A minimal window manager built using React.
- Host: GitHub
- URL: https://github.com/stayradiated/reactwm
- Owner: stayradiated
- License: mit
- Created: 2014-05-03T05:41:24.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-01T03:04:50.000Z (over 8 years ago)
- Last Synced: 2024-11-03T11:32:14.565Z (2 months ago)
- Language: JavaScript
- Homepage: http://stayradiated.github.io/reactwm/
- Size: 1020 KB
- Stars: 36
- Watchers: 5
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - reactwm - A minimal window manager built using React. (Soluções / Form Components)
README
ReactWM
=======A minimal window manager built using React.
## Install
```
npm install --save reactwm
```## Example App
```
> npm start
```Then open http://localhost:8000
## Usage
```javscript
var React = require('react');
var ReactWM = require('reactwm');var Settings = require('./views/settings');
var manager = new ReactWM.Manager();
React.renderComponent(
,
document.body
);manager.open(, {
id: 'settings',
x: 20,
y: 20,
width: 300,
height: 400,
title: 'Settings'
});
```