Skip to content

Latest commit

 

History

History
145 lines (99 loc) · 3.96 KB

prerequisite.md

File metadata and controls

145 lines (99 loc) · 3.96 KB

Tools Prerequisite

Some tools and technologies greatly help the developer's work, like code quality control, automatic formatting utilities and browser's developer tools.

Text Editor

One need a decent text editor with at least those features :

  • Syntax coloration
  • Templates Snippets
  • Linter (sea later)
  • Formatter
  • (opt) Minifier

Some good editors

  • Old School: Vim, Emacs
  • IDE: Netbeans, Eclipse, Aptana, WebStorm
  • Windows only: NotePad++, UltraEdit, Dreamweaver
  • Mac only: TextMate, Coda, Textwrangler
  • Linux only: Gedit
  • ☁️ Cloud Based: Cloud9, Codeanywhere, Koding
  • ❤️ The ones you should use ;-): Sublime Text, Brackets, Atom

Web Browser Developer tools

A good project has to be tested on all major browsers. It is however difficult to do it during development. Tip: change your default browser every week or so.

Dev-channels and Developer-dedicated browsers

Main browsers provide versions of browser with latest features and/or tuned for developers.

Developer tools

Mostly same features in all browsers (without plugin)

  • DOM/CSS analyzer/explorer
  • Network status (per request)
  • Profiler
  • Code Explorer
  • Javascript Console
  • Debugger ...

Server-side Javascript

Appart from JS console in browsers, several interpreters are available. Node.js is a JS runtime build on Chrome's JS engine (V8).

The node (or nodejs) command is a command line interactive interpreter a.k.a. a REPL (Read–eval–print loop):

$ node
> var oh = {my: 'dear'}
undefined
> oh.my
'dear'
>

The node command can also run scripts (node my_script.js).

Node.js is associated with NPM (Node Package Manager). The NPM project manages packages written for Node.js, resolves dependencies between packages and help building new projects. NPM is also a repository where all the Node.js packages are registered at https://npmjs.org.

mkdir myProject && cd myProject
npm search lodash
npm install lodash
npm init # create your own package!

Install Node.js

  • On Ubuntu
curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
sudo apt-get install nodejs

Code Quality Control

JavaScript is an interpreted language. No compilation. Errors are raised at runtime. A syntactic analysis usually helps. Several tools help controlling your code quality:

Most editor can include such tools.

Code Formatting

Quickly Test and exchange code

  • General Purpose: Github's Gist

  • Specific to Web Development:

Code Versioning

Any project should be hosted on a versioning system. Free services like Github, BitBucket, GitLab, etc., are used to:

  • host public/private projects source code
  • launch automated tests
  • host projects public web sites
  • build your own portfolio

Create a profile and start building your public code portfolio.