Provide a nice code playground that let you play with some html, javascript (coffee, typescript, etc...) and css (sass, scss, stylus, etc...)
- Nice web interface to play with your code live
- Support sass/stylus/es6/coffeescript/typescript compilation through the compile-server package
- Nicely display information from the
package.json
file - Support multiple "apps" that run on the same code-playground server
- Support multiple layouts like : top / right / bottom / left / vertical / horizontal / embed
- Demo: http://components.coffeekraken.io
- Install
- Get Started
- Documentation
- Browsers support
- Contribute
- Who are Coffeekraken?
- Licence
npm install coffeekraken-code-playground --save-dev
#### Config file
Create a code-playground.config.js
file at the root of your project like this one:
module.exports = {
title : 'Hello World',
port : 3000,
editors : {
html : {
data : `
<h1>Hello World</h1>
`
},
css : {
language : 'sass',
data : `
body {
background: red;
}
`
},
js : {
data : `
console.log('hello world');
`
}
}
};
See documentation for full code-playground.config.js
file reference
Add in your package.json
file a demo script like so:
{
"scripts": {
"demo": "coffeekraken-code-playground"
}
}
Launch the NPM script to start your code-playground server like so:
npm run demo
IE / Edge |
Firefox |
Chrome |
Safari |
---|---|---|---|
IE11+ | last 2 versions | last 2 versions | last 2 versions |
As browsers are automatically updated, we will keep as reference the last two versions of each but this component can work on older ones as well.
The webcomponent API (custom elements, shadowDOM, etc...) is not supported in some older browsers like IE10, etc... In order to make them work, you will need to integrate the corresponding polyfill.
This is an open source project and will ever be! You are more that welcomed to contribute to his development and make it more awesome every day. To do so, you have several possibilities:
We try to be some cool guys that build some cool tools to make our (and yours hopefully) every day life better.
The code is available under the MIT license. This mean that you can use, modify, or do whatever you want with it. This mean also that it is shipped to you for free, so don't be a hater and if you find some issues, etc... feel free to contribute instead of sharing your frustrations on social networks like an asshole...