All Projects → sabarasaba → Modern Backbone Starterkit

sabarasaba / Modern Backbone Starterkit

Lightweight starting point for a modern backbone web app.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Modern Backbone Starterkit

Styled React Boilerplate
Minimal & Modern boilerplate for building apps with React & styled-components
Stars: ✭ 198 (+4.76%)
Mutual labels:  babel, modern, boilerplate
Serverless Prisma
AWS Serverless Prisma Boilerplate
Stars: ✭ 126 (-33.33%)
Mutual labels:  babel, boilerplate
Fast
Develop, build, deploy, redeploy, and teardown frontend projects fast.
Stars: ✭ 126 (-33.33%)
Mutual labels:  babel, boilerplate
Typescript Webpack React Redux Boilerplate
React and Redux with TypeScript
Stars: ✭ 182 (-3.7%)
Mutual labels:  babel, boilerplate
Simple Boilerplate
A simple webpack boilerplate for your comfortable work with HTML, JS and CSS.
Stars: ✭ 116 (-38.62%)
Mutual labels:  babel, boilerplate
Static Site Boilerplate
A better workflow for building modern static websites.
Stars: ✭ 1,633 (+764.02%)
Mutual labels:  babel, boilerplate
React Pages Boilerplate
Deliver react + react-router application to gh-pages
Stars: ✭ 134 (-29.1%)
Mutual labels:  babel, boilerplate
React Boilerplate
This project is deprecated. Please use CRA instead.
Stars: ✭ 88 (-53.44%)
Mutual labels:  babel, boilerplate
Project Webcube
Continuously updated JS infrastructure for modern web dev
Stars: ✭ 141 (-25.4%)
Mutual labels:  babel, boilerplate
Iceberg
Front-End Boilerplate built with React + Babel + Webpack + SASS
Stars: ✭ 144 (-23.81%)
Mutual labels:  babel, boilerplate
Js Stack Boilerplate
Final boilerplate code of the JavaScript Stack from Scratch tutorial –
Stars: ✭ 145 (-23.28%)
Mutual labels:  babel, boilerplate
React Redux Auth0 Kit
Minimal starter boilerplate project with CRA, React, Redux, React Router and Auth0 authentication
Stars: ✭ 115 (-39.15%)
Mutual labels:  babel, boilerplate
Frontie Webpack
Front-end Boilerplate | Gulp 4 + Webpack 4 + Babel + ITCSS Architecture + BEM Methodology + Twig.js
Stars: ✭ 102 (-46.03%)
Mutual labels:  babel, boilerplate
Babel React Rollup Starter
A simple boilerplate for web apps with React, Babel, and Rollup.
Stars: ✭ 124 (-34.39%)
Mutual labels:  babel, boilerplate
Forge Node App
🛠📦🎉 Generate Node.js boilerplate with optional libraries & tools
Stars: ✭ 90 (-52.38%)
Mutual labels:  babel, boilerplate
Webpack Starter
✨ A lightweight foundation for your next webpack based frontend project.
Stars: ✭ 1,745 (+823.28%)
Mutual labels:  babel, boilerplate
React Redux Universal Boilerplate
An Universal ReactJS/Redux Boilerplate
Stars: ✭ 165 (-12.7%)
Mutual labels:  babel, boilerplate
Node Developer Boilerplate
🍭 Boilerplate for ES6+ Node.js and npm Developer
Stars: ✭ 82 (-56.61%)
Mutual labels:  babel, boilerplate
React Redux Saucepan
A minimal and universal react redux starter project. With hot reloading, linting and server-side rendering
Stars: ✭ 86 (-54.5%)
Mutual labels:  babel, boilerplate
Kickup
🚚 Boilerplate for your perfect front-end environment (utilizing Gulp.js, Babel, and more)
Stars: ✭ 139 (-26.46%)
Mutual labels:  babel, boilerplate

Modern Backbone Starter-kit

Gitter

This project provides a prepared development environment for modern backbone development. ES6, Jest, HMR, css-next, eslint; all ready for you to use.

Getting Started

Just clone or fork the repo and start hacking:

$ git clone https://github.com/sabarasaba/modern-backbone-starterkit.git AwesomeApp && cd $_
$ yarn install
$ cp .env.example .env

Development

Uses webpack-dev-server with HMR to serve your app:

$ yarn dev

Note on css

This project uses postcss with a few plugins in order to provide a modern approach to dealing with css. It runs autoprefixer by default, supports nested classes, imports and everything else that css-next has to offer.

Production build

This will build a minified version of the app and will output everything into the public/ folder:

$ yarn build

If you wanna serve the production app you can do so by running:

$ yarn start

How to run tests

You can easily run the unit tests by doing:

$ yarn test

Or check your code coverage with:

$ yarn coverage

Linter

Currently using airbnb's presets, you can run it with:

$ yarn lint

How to Update

You can always fetch and merge the recent changes from this repo back into your own project:

$ git checkout master
$ git fetch upstream
$ git merge upstream/master
$ npm install

A Note on ES Classes

ES2015 Classes do not work well with Backbone or Marionette at time of writing. See https://github.com/jashkenas/backbone/issues/3560. Use Backbone's built in extend functions to get around this for the time being.

Learn More

Support

Have feedback, feature request or need help? Create an issue !

License

The MIT License (MIT)

Copyright (c) 2017 Ignacio Rivas

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].