Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div id="app"></div>
              
            
!

CSS

              
                
              
            
!

JS

              
                // Create a data store
// You can use setters directly on a component, too
// The first argument on a setter is the store/component data
// You can pass in as many other arguments as you'd like
var store = new Reef.Store({
	data: {
		heading: 'My Todos',
		todos: ['Swim', 'Climb', 'Jump', 'Play']
	},
	setters: {
		addTodo: function (props, todo) {
			props.todos.push(todo);
		}
	}
});

// Use the store in the app
var app = new Reef('#app', {
	store: store,
	template: function (props) {
		return `
			<h1>${props.heading}</h1>
			<ul>
				${props.todos.map(function (todo) {
					return `<li>${todo}</li>`;
				}).join('')}
			</ul>`;

	}
});

app.render();

// After 3 seconds, try to update the data
// This won't do anything, because setters were defined
// When setters are defined, only explicit setter functions can update state
// The state returned from app.data is an immutable, so store.data is never updated
setTimeout(function () {
	store.data.todos.push('Take a nap... zzzz');
	console.log('Update state directly', store.data.todos);
}, 3000);

// After 6 seconds, add a todo using the addTodo setter
// This WILL update the state and render an updated UI
setTimeout(function () {
	store.do('addTodo' ,'Take a nap... zzzz');
	console.log('Update state with setter', store.data.todos);
}, 6000);
              
            
!
999px

Console