https://github.com/toucantoco/component-boilerplate
Starter kit for Toucan Toco's components
https://github.com/toucantoco/component-boilerplate
Last synced: 3 months ago
JSON representation
Starter kit for Toucan Toco's components
- Host: GitHub
- URL: https://github.com/toucantoco/component-boilerplate
- Owner: ToucanToco
- Created: 2015-10-31T13:47:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-26T13:13:42.000Z (over 9 years ago)
- Last Synced: 2024-12-27T19:30:56.427Z (5 months ago)
- Language: CoffeeScript
- Homepage:
- Size: 15.6 KB
- Stars: 2
- Watchers: 9
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Toucan Toco component boilerplate
> Starter kit for Toucan Toco's components[](https://circleci.com/gh/ToucanToco/component-boilerplate)
### Starting blocks
- Clone
- Replace `tctc-component`, `tctcComponent` by your new component name
- Change your remote to a new repository
- Have fun!### Build
```bash
# Install npm + bower dependencies and then build
npm install
```### Develop with the demo
```bash
# Start watching & building component files
npm start
# Indicate to bower the use of this local folder for your component
bower link# In demo's folder...
cd demo
# Indicate to bower the use of your local component
bower link tctc-component
# Run the demo
npm install
npm start
# http://localhost:8000
```### Publish
To be written...