Giter Club home page Giter Club logo

frontend-boilerplate's Introduction

Frontend Boilerplate

Codacy Badgecode style: prettier conventionl-commits

This gulp based template was mainly built to lint and compile JavaScript and CSS assets.

Use this template to adopt new asset projects.

Get Started Before Getting Started

  1. Clone this repository
  2. Configure the following files (at least replace myproject with your real project name):
  3. Enter your Jira project key with following - as rules.parserPreset.parserOpts.issuePrefixes in /commitlint.config.js, e. g. TECH- (used by commitlint to validate Jira issue ids in commit messages โ€“ you also can specify several project keys as array)
  4. Some optionalities:
  5. Proceed with the Getting Started manual below
  6. Remove this Frontend Boilerplate header block right here
  7. ๐ŸŽ‰ Happy Coding!

โœ‚๏ธ REMOVE ALL ABOVE โœ‚๏ธ


MyProject

This is a short description of an awesome new asset project.

Table of Contents


Getting Started

This project uses NodeJS with npm. We assume in this documentation that all necessary tools are installed and that you are experienced in using them.

Global Setup

Optional: Install gulp-cli globally and you'll have access to the gulp command anywhere on your system. Otherwise you have to execute Gulp via npx which comes by default with npm. See Build Commands.

npm i gulp-cli -g

Local Setup

Checkout git repository and set up initially.

git clone https://git.fsd.li/myproject
cd myproject
npm i && composer install

Workflow

โš ๏ธ Note: Do regular pull requests in smaller chunks and let it be reviewed by other developers of your team. Only by that we can ensure code quality and catch possible errors early on! Please don't work in a forked codebase as downstream updates are intransparent.

Branching

The master branch is the default branch. Developers should create feature/ - branches to merge code into master. Those branches should be named like this : feature/JIRA_TICKET_ID-some-comment. It is also possible to prefix them with hotfix/... (for any kinds of bugs) or chore/... (refactorings, unit tests, update dependecies etc.). Whenever we decide to deploy those changes to any stage, we merge them into testing for perf or into master for production stage.

Branch Overview

Branch Description
master The working branch which gets deployed to production.
testing The feature merging branch which gets deployed to perf environment.
{BRANCH_TYPE}/{JIRA_TICKET_ID}-{SHORT_DESCRIPTION} The BRANCH_TYPE should be one of feature or hotfix or chore. A feature branch for each new feature being added to the application. This branch should only temporarily exist until the changes has been launched to production. Please remove them autonomous when your PR has been merged.

Development

We're using npm as our package manager and Prettier, ESLint (airbnb/javascript specifically) & stylelint to automatically format all code using lint-staged. It's also recommended to have a linter active in your editor, to ensure common coding styleguides and speed up your own development.

Build Commands

โœ… global gulp-cli โŒ global gulp-cli Description
gulp npx gulp Compiles and lints all assets.
gulp watch npx gulp watch Compiles and lints all assets โ€“ and keeps watching for further changes.
gulp --production npx gulp --production Compiles all assets without linting.

Commiting

For committing, we are following the Conventional Commits specification. The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of. This convention dovetails with SemVer, by describing the features, fixes, and breaking changes made in commit messages.

The commit message should be structured as follows:

type(scope): subject

body?

issue-reference

To make sure, that every commit is following the specification, commitlint will check your messages on commit.

Deployment

This project can be deployed with the following FSD Jenkins Server job triggering the ShipIt deployment script in this project (shipit/shipitfile.js): myproject_deploy-assets

Release

There is a Tool to automate the versioning and the changelog. It uses conventional changelog to automatically add the latest changelogs. Just type npm run release when you want to release after merging into master and it will automatically:

  • bump the version in metadata files (package.json, composer.json, etc).
  • use conventional-changelog to update CHANGELOG.md
  • commit package.json (et al.) and CHANGELOG.md
  • tag a new release

It will automatically determine the release type based on the commit message type.

Most important commands:

Command Description
npm run release Bumps version automatically, updates files, commits these changes and creates a git tag. Follow the publish instruction afterwards.
npm run release -- --dry-run Allows you to see what commands would be run, without committing to git or updating files.
npm run release -- --release-as major If you want to raise major version manually instead of automatically detecting it.

For more information visit conventional-changelog/standard-version.

User Guide

The user guide contains all detailed documentation on how to work and contribute as a team to this awesome project.

Linting

The codebase gets automatically linted and formatted on each git commit hook (done via husky and lint-staged). No code can be pushed that doesn't meet the styleguide requirements.

JavaScript

For JavaScript, we're using ESlint for linting including the Airbnb JavaScript Style Guide.

CSS

stylelint (with the bjankord/stylelint-config-sass-guidelines ruleset) helps us to maintain a common CSS formating foundation.

frontend-boilerplate's People

Contributors

christopherwiegel avatar eljay040 avatar tiger42 avatar

Watchers

 avatar  avatar  avatar

frontend-boilerplate's Issues

A lot of basic scripts in the compilation

There are lots of basic scripts in the output *.js files.

It's probably caused by Babel and/or Modernizr. This should be reviewed and clarified whether it's really needed.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.