Technologies Every Web Developer Should Be Know
Browsers are the interpreters of the web. They request information and then when they receive it, they show us on the page in a format we can see and understand.
- Google Chrome – Currently, the most popular browser brought to you by Google
- Firefox – Open-source browser supported by the Mozilla Foundation
- Safari – Apple’s web browser
- Internet Explorer – Microsoft’s browser. You will most often hear web developers complain about this one.
2. HTML
3. CSS
CSS is a Cascading Style Sheet. CSS let’s web designers change colors, fonts, animations, and transitions on the web. They make the web look good.
- LESS – a CSS pre-compiler to make working with CSS easier and add functionality
- SASS – a CSS pre-compiler to make working with CSS easier and add functionality
4. Programming Languages
Programming languages are ways to communicate to computers and tell them what to do. There are many different programming languages just like there are many different lingual languages (English, Spanish, French, Chinese, etc). One is not better than the other. Developers typically are just proficient at a couple so they promote those more than others. Below are just some of the languages and links to their homepages
- Python -used by the Django framework and used in a lot of mathematical calculations
- Javascript – used by all web browsers, Meteor, and lots of other frameworks
- Coffeescript – is a kind of “dialect” of javascript. It is viewed as simpler and easier on your eyes as a developer but it complies (converts) back into javascript
- Java – Used by Android (Google) and a lot of desktop applications.
- Ruby – used by the Ruby on Rails framework
- PHP – used by WordPress
- Go – newer language, built for speed.
- Swift – Apple’s newest programming language.
5. Libraries
Libraries are groupings of code snippets to enable a large amount of functionality without having to write it all by yourself. Libraries typically also go through the trouble to make sure the code is efficient and works well across browsers and devices (not always the case, but typically they do).
- jQuery
- Underscore
6. Frameworks
Frameworks are built to make building and working with programming languages easier. Frameworks typically take all the difficult, repetitive tasks in setting up a new web application and either does them for you or make them very easy for you to do.
- Ruby on Rails – a full-stack framework built using ruby
- Node.js – a server-side javascript framework
- lonic – a mobile framework
- Django – a full-stack framework built using python
- Phonegap / Cordova – a mobile framework that exposes native api’s of iOS and Android for use when writing javascript.
- Bootstrap – a UI (user interface) framework for building with HTML/CSS/Javascript
- Foundation – a UI framework for building with HTML/CSS/Javascript.
- WordPress – a CMS (content management system) built on PHP. Currently, about 20% of all websites run on this framework.
- Drupal – a CMS framework built using PHP.
- .Net – a full-stack framework built by Microsoft
- Angular.js – a front-end javascript framework.
- Ember.js – a front-end javascript framework.
- Backbone.js – a front-end javascript framework.
7. Databases
- MongoDB – is an open-sourced NoSQL database and is currently the only database supported by Meteor.
- MySQL – is another popular open-sourced SQL database. MySQL is used in WordPress websites.
- Redis – is the most popular key-value store. It is lighting fast for retrieving data but doesn’t allow for much depth in the data storage.
- PostgreSQL – is a popular open-sourced SQL database.
- Oracle – is an enterprise SQL database.
- SQL Server – is an SQL server manager created by Microsoft.
9. Protocols
Protocols are standardized instructions for how to pass information back and forth between computers and devices.
- HTTP – This protocol is how each website gets to your browser. Whenever you type a website like “ http://google.com” this protocol requests the website from google’s server and then receives a response with the HTML, CSS, and javascript of the website.
- DDP – is a new protocol created in connection with Meteor. The DDP protocol uses websockets to create a consistent connection between the client and the server. This constant connection lets websites and data on those websites update in real-time without refreshing your browser.