Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Learning roadmap

Patrik Björklund edited this page Apr 9, 2016 · 8 revisions

This project uses a lot of different kinds of technologies. In order to make getting started easier we provide a learning roadmap which covers the major technological building blocks of the solution.

Gulp

Streaming build server which we use for doing tasks like:

  • Compiling typescript, minifying the compiled gulpjs
  • Linting - I.e checking code for styleistic errors
  • Build the typings definitions
  • Building the project as a whole
  • Test runner for our mocha tests
  • Starting a httpserver to serve a copy of the project on your dev machine

Brief introduction: http://gulpjs.com/

Deeper dive: 5 hour pluralsight course from John Papa

Node-js

Let's us run JavaScript serverside.

We use node for tasks like:

  • Running our automated test suite
  • Hosting a local instance of the project for development and debugging
  • Gulp is installed as a node package

Brief introduction: Collection of resources

Deeper dive: TBD

TypeScript

A typed superset of JavaScript that compiles to plain JavaScript.

The reason the project is built on TypeScript instead of vanilla JavaScript is ???

Brief introduction: The excellent Handbook at the TS docs. Go through them all.

Deeper dive: TBD

Typings

Typings is the simple way to manage and install TypeScript definitions. It's like NuGet/npm for your TypeScript definitions

Brief introduction: Github

Deeper dive: TBD

Bower

Package manager for front-end dependencies. It's not in use now, but the PnP package will be available from Bower at release. By using bower we can easily update and manage the packages the solution is built on.

Brief introduction: Bower web

Deeper dive: TBD

Mocha and Chai

JavaScript test framework running on Node.js and the browser.

Brief introduction: The mocha website

Deeper dive: TBD

Git

A distributed version control system

Brief introduction: Interactive learning

Deeper dive: The git book (free)

Editors

Development of PnP-JS-Core does not require Visual Studio. Any text editor can be used. Of course Visual Studio and VS Code has great built in support for TypeScript giving youthings like,a

  • Intellisense
  • Integration with TSLint

Clone this wiki locally