Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/derbyjs/component-examples
listing of community built derby examples
https://github.com/derbyjs/component-examples
Last synced: about 1 month ago
JSON representation
listing of community built derby examples
- Host: GitHub
- URL: https://github.com/derbyjs/component-examples
- Owner: derbyjs
- Created: 2014-07-15T16:55:27.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-19T02:04:17.000Z (about 10 years ago)
- Last Synced: 2024-08-03T19:08:29.909Z (4 months ago)
- Language: CoffeeScript
- Size: 252 KB
- Stars: 7
- Watchers: 16
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-derby - component-examples - listing of community built derby examples (Information)
README
component-examples
==================listing of community built derby examples
```
coffee server.coffee
```
direct your browser to `http://localhost:3330`# Add your component
Make sure you component has an `example.coffee` and `example.html`.
Make a pull request with the following changes:
Add your component to the package.json, add
```js
app.use require 'yourcomponent/example'
```
to index.coffeeIf you have styles for your component you can require it in the main `index.styl`
```css
@require './node_modules/yourcomponent/style.css'
```