Giter Club home page Giter Club logo

frontend-developer-checklist's Introduction

Frontend-developer's checklist

Usage

Open source code of this file and copy next chapter into issue of your project. Enjoy!

Checklist

Common stuff: pages, styles, etc

  • Check responsive design for typical resolutions (320, 480, 1024, 1600, 2k)
  • Viewport meta tag
  • X-UA-Compatible meta tag 1
  • Format detection meta tags 2
  • Page 404
  • Page 5xx
  • Print version
  • Noscript version
  • Proper cache for all static files
  • Apple-specific meta tags
  • All absolute pathes without protocol

Graphics

  • Favicon 16x16, 32x32 3
  • Apple icons 4
  • Android icons 5
  • Support retina displays
  • Sprites and icon fonts
  • Minify all images with Imagemin
  • Image inlining (for instance in Stylus)

SEO and Social

Validation and performance

Build systems

  • Deploy task for build system
  • Code style (jshint, jscs) for JavaScript code
  • Autoprefixer for all styles
  • Don't save builds in project's VCS
  • Check project's deployment (all stuff must be in config files: package.json, bower.json)
  • npm test required

[1] X-UA-Compatible

<meta http-equiv="X-UA-Compatible" content="IE=edge">

[2] Format detection

<meta name="format-detection" content="telephone=no"/>
<meta name="format-detection" content="address=no"/>

[3] Favicon

<link rel="shortcut icon" type="image/x-icon" href="path/to/icon.ico"/>

[4] Apple icons

<link rel="apple-touch-icon" href="57x57.png">
<link rel="apple-touch-icon" href="72x72.png" sizes="72x72">
<link rel="apple-touch-icon" href="114x114.png" sizes="114x114">
<link rel="apple-touch-startup-image" href="57x57.png">

[5] Android icons

<link rel="icon" sizes="192x192" href="nice-highres.png">
<link rel="icon" sizes="128x128" href="niceicon.png">

[6] Common meta tags

<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<meta name="copyright" content="" /> 

frontend-developer-checklist's People

Contributors

albburtsev avatar

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.