All Projects → pankod → Svelte Boilerplate

pankod / Svelte Boilerplate

Svelte application boilerplate with Webpack, Babel, PostCSS, Sass, Fetch, Jest, .Env, EsLint.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Svelte Boilerplate

Js Toolbox
CLI tool to simplify the development of JavaScript apps/libraries with little to no configuration. (WORK IN PROGRESS/PACKAGE NOT PUBLISHED).
Stars: ✭ 53 (-75.46%)
Mutual labels:  webpack, jest, postcss
React Redux Boilerplate
Awesome React Redux Workflow Boilerplate with Webpack 4
Stars: ✭ 307 (+42.13%)
Mutual labels:  webpack, jest, postcss
Starter Lapis
Cutting edge starter kit
Stars: ✭ 72 (-66.67%)
Mutual labels:  webpack, jest, postcss
Pwa
An opinionated progressive web app boilerplate
Stars: ✭ 353 (+63.43%)
Mutual labels:  webpack, jest, postcss
React Boilerplate
This project is deprecated. Please use CRA instead.
Stars: ✭ 88 (-59.26%)
Mutual labels:  webpack, jest, postcss
Iceberg
Front-End Boilerplate built with React + Babel + Webpack + SASS
Stars: ✭ 144 (-33.33%)
Mutual labels:  webpack, jest
Js Stack Boilerplate
Final boilerplate code of the JavaScript Stack from Scratch tutorial –
Stars: ✭ 145 (-32.87%)
Mutual labels:  webpack, jest
Webpack Encore
A simple but powerful API for processing & compiling assets built around Webpack
Stars: ✭ 1,975 (+814.35%)
Mutual labels:  webpack, postcss
Deventy
A minimal 11ty starting point for building static websites with modern tools.
Stars: ✭ 157 (-27.31%)
Mutual labels:  webpack, postcss
Monitaure
🔔 A server uptime monitoring progressive web application - NO LONGER MAINTAINED
Stars: ✭ 135 (-37.5%)
Mutual labels:  webpack, jest
J
微信网页版API 微信桌面机器人
Stars: ✭ 155 (-28.24%)
Mutual labels:  webpack, jest
Express Webpack React Redux Typescript Boilerplate
🎉 A full-stack boilerplate that using express with webpack, react and typescirpt!
Stars: ✭ 156 (-27.78%)
Mutual labels:  webpack, jest
Micro Starter
[Deprecated] 🔷 Basic (opinionated) starter kit for a micro app with webpack build
Stars: ✭ 144 (-33.33%)
Mutual labels:  webpack, jest
Book
《现代化前端工程师权威指南》https://guoyongfeng.github.io/book/
Stars: ✭ 141 (-34.72%)
Mutual labels:  webpack, postcss
Reactql
Universal React+GraphQL starter kit: React 16, Apollo 2, MobX, Emotion, Webpack 4, GraphQL Code Generator, React Router 4, PostCSS, SSR
Stars: ✭ 1,833 (+748.61%)
Mutual labels:  webpack, postcss
Spring Boot Vuejs
Example project showing how to build a Spring Boot App providing a GUI with Vue.js
Stars: ✭ 1,818 (+741.67%)
Mutual labels:  webpack, jest
Reactconfbr
Public infos and issues about React Conf Brasil organization
Stars: ✭ 156 (-27.78%)
Mutual labels:  webpack, jest
Quickshare
Quick and simple file sharing between different devices.
Stars: ✭ 190 (-12.04%)
Mutual labels:  webpack, jest
Polymer Skeleton
💀 Skeleton for Polymer 3 app with Webpack, PostCSS and Service Workers ready.
Stars: ✭ 185 (-14.35%)
Mutual labels:  webpack, postcss
100 Days Of Code Frontend
Curriculum for learning front-end development during #100DaysOfCode.
Stars: ✭ 2,419 (+1019.91%)
Mutual labels:  webpack, jest
SvelteJS application boilerplate with Webpack, scss, babel, fetchjs, postcss, jest, .env.

Svelte application boilerplate with Webpack, Babel, PostCSS, Sass, Fetch, Jest, .Env, EsLint.


This boilerplate make it easier to get started with a well-structured Svelte application.

Created by Pankod

About

Svelte is a new approach to building user interfaces. Whereas traditional frameworks like React and Vue do the bulk of their work in the browser, Svelte shifts that work into a compile step that happens when you build your app.

Svelte runs at build time, converting your components into pure and optimized JavaScript code without other framework dependencies which makes for really tiny bundles. Instead of using techniques like virtual DOM diffing, Svelte writes code that surgically updates the DOM when the state of your app changes. So there is no virtual DOM, no frameworks on top of frameworks, and no framework to load at runtime.

The advantages of this approach is we're able to write applications with excellent performance characteristics.

This boilerplate make it easier to get started with a well-structured Svelte application.

By the end of setup, you'll have a Svelte project and features which is specified at the below.


Features

This boilerplate includes the latest powerfull tools.

  • Svelte - Component framework which compiles your code to tiny, framework-less vanilla JS.
  • Built-in Project CLI- Create pages, components, actions, reducers with one command by using built-in cli.
  • Sass/Scss - CSS preprocessor, which adds special features such as variables, nested rules and mixins (sometimes referred to as syntactic sugar) into regular CSS.
  • PostCSS/autoprefixer - A plugin to parse CSS and add vendor prefixes to CSS rules using values from Can I Use.
  • Babel - The compiler for next generation JavaScript.(babel/polyfill included)
  • Eslint - The pluggable linting utility.
  • dotenv .config - Expose environment variables to the runtime config of Next.js
  • Jest - Javascript testing framework , created by developers who created react
  • testing-library - Simplifies the use of dom-testing with Svelte components & applications.
  • webpack - A static module bundler for modern JavaScript applications.
  • fetch - A promise-based mechanism for programmatically making web requests in the browser.

Setup & Documentation

Please refer to our setup guide to create a new app.

For more detailed documentation, check out https://pankod.github.io/svelte-boilerplate/


Built-in CLI



Pankod boilerplate is shipped with a CLI tool to streamline the creation of new components. By using the CLI tool, you may easily add components to your project.

To start the CLI, you may run the following npm command:

npm run cli

After starting, an interactive menu will let you configure the component the be created. You'll be asked for the name of the component.

After answering question it generates component, style and test files in miliseconds.


License

Licensed under the MIT License, Copyright © 2019-present Pankod

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].