
A starter pack for a web app, using gulp & webpack for compilation
The ES6 Starter Pack is an essential toolkit designed for developers looking to build modern web applications with ease. It leverages the power of Babel for transpiling ES5+ JavaScript code, ensuring compatibility with various browsers while embracing the latest language features. Combined with Gulp and Webpack for efficient compilation, this starter pack simplifies the setup process allowing developers to focus on writing code rather than configuring tools.
This starter pack is organized neatly with all development files housed in the /app folder, making it easy to navigate and manage your projects. Whether you're working on a small personal project or a more complex application, this starter pack offers both the structure and tools you need to streamline your workflow.
Babel Integration: Transpiles modern JavaScript (ES5+) for compatibility with older browsers, allowing you to use the latest features without worrying about support.
Gulp & Webpack: Utilizes these powerful tools for task automation and module bundling, optimizing your builds for both development and production environments.
Organized File Structure: All development files are conveniently located in the /app folder, making it user-friendly and easy to manage.
Development Scripts: Includes npm scripts such as build:dev and build:prod to simplify the compilation process for development and production.
Lite-Server: Offers a simple npm start command to run a lite server in the build folder, providing live reloading capability for a smoother development experience.
Easy Installation: A straightforward setup with npm install allows you to get started quickly without complex configurations.
This starter pack is definitely a robust option for anyone looking to jump into modern web development with minimal hassle.

ESLint is a linter for JavaScript that analyzes code to detect and report on potential problems and errors, as well as enforce consistent code style and best practices, helping developers to write cleaner, more maintainable code.
Gulp.js is an old but popular site building tool that automates various repetitive development tasks in web development, such as compiling Sass, minifying JavaScript, and optimizing images.
Webpack is a popular open-source module bundler for JavaScript applications that bundles and optimizes the code and its dependencies for production-ready deployment. It can also be used to transform other types of assets such as CSS, images, and fonts.