node.js 101

Post on 02-Dec-2014

210 Views

Category:

Internet

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

Node.js 101 with Rami Sayar Presented by FITC at Web Unleashed 2014 in Toronto on September 18 2014, 10:30 - 11:15am Node.js is a runtime environment and library for running JavaScript applications outside the browser. Node.js is mostly used to run real-time server applications and shines through its performance using non-blocking I/O and asynchronous events. This talk will introduce you to Node.js by showcasing the environment and its two most popular libraries: express and socket.io. TARGET AUDIENCE Beginner web developers ASSUMED AUDIENCE KNOWLEDGE Working knowledge of JavaScript and HTML5. OBJECTIVE Learn how to build a chat engine using Node.js and WebSockets. FIVE THINGS AUDIENCE MEMBERS WILL LEARN Node.js environment and basics Node Package Manager overview Web Framework, express, basics WebSockets and Socket.io basics Building a chat engine using Node.js

TRANSCRIPT

Rami Sayar - @ramisayar

Technical Evangelist

Microsoft Canada

• Bootstrap Layout and CSS Basics

• Responsive Web Design and Bootstrap

• Bootstrap Components, Themes

• Favorite Addons

• LOTS OF DEMOS!

• Working knowledge of HTML5 and CSS3.

Note: Slides and code will be made available on @ramisayar.

• Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web.

• Designed for everyone, everywhere.

• Open Source!

• It's made for folks of all skill levels, SUPER EASY TO GET STARTED.

• Developed by Mark Otto and Jacob Thornton at Twitter.

• Currently v3.2.0

• Supports Internet Explorer 8-11, Chrome, Firefox, Opera, Safari.

• Designed for the mobile-first, responsive Web

• Building new websites and mobile web apps

• Need a quick and easy way to prettify your website/tool

• Looking to develop over a stable CSS framework with a large community. -> Bootstrap is for you.

• Do not use Bootstrap if you want a truly unique design and style.

• Huge community!

• Most popular project on GitHub

• 71,893 stars

• 26,883 forks

• 581 contributors

HTML5 doctype

<!DOCTYPE html><html lang="en">...

</html>

Bootstrap is mobile first.

<meta name="viewport" content="width=device-width, initial-scale=1">

Disabling mobile zoom (don’t do it).

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">

• Bootstrap sets basic global display, typography and link styles. (You can see this in scaffolding.less)

• Bootstrap also normalizes basic browser rendering using Normalize.css

• Responsive web design is a design approach aimed at crafting sites to provide an optimal viewing experience—easy reading and navigation with a minimum of resizing, panning, and scrolling—across a wide range of devices (from mobile phones to desktop computer monitors). Wikipedia

• Thinking of the user’s needs instead of ours.

• Adapt to various device capabilities instead of configurations.

• Help future-proof our sites.

• A flexible, grid-based layout,

• Flexible images and media, and

• CSS3 media queries.

• Bootstrap includes a responsive, mobile first fluid grid system that scales 12 column units to the device width size.

• The MOST IMPORTANT part of this presentation.

• Grids must be placed within a container. The container type changes behavior and sizing.

Reference: http://getbootstrap.com/css

• Includes 200 glyphs from Glyphicon Halflings.

• Don’t mix with other components.

• Only for use on empty elements that have no child elements.

<span class="glyphicon glyphicon-search"></span>

<ul class="nav nav-tabs" role="tablist"><li class="active"><a href="#">Home</a></li><li><a href="#">Profile</a></li><li><a href="#">Messages</a></li>

</ul>

<ul class="nav nav-pills"><li class="active"><a href="#">Home</a></li><li><a href="#">Profile</a></li><li><a href="#">Messages</a></li>

</ul>

<span class="label label-default">Default</span><span class="label label-primary">Primary</span><span class="label label-success">Success</span><span class="label label-info">Info</span><span class="label label-warning">Warning</span><span class="label label-danger">Danger</span>

• To customize Bootstrap, you can customize Less.

• Bootstrap uses Grunt for its build system.

• grunt dist - compile CSS and JavaScript

• grunt watch - watch directory

• grunt test – run tests

• grunt – build everything and run tests

• Lots of themes are available for free.

• Take a look: bootswatch.com or wrapbootstrap.com

• Fuel UX: http://exacttarget.github.io/fuelux/

• Bootstrap Growl: https://github.com/ifightcrime/bootstrap-growl

• Bootstrap Modal: http://jschr.github.io/bootstrap-modal/

• Bootstrap Markdown: http://toopay.github.io/bootstrap-markdown/

• I was using Visual Studio 2013, you can get it for free here:• http://www.visualstudio.com/en-us/products/visual-studio-express-

vs.aspx

• And Visual Studio Web Essentials: http://vswebessentials.com/

• Includes Bootstrap Support:• Intellisense and Code Completion

• Error Detection

• Bootstrap Layout Basics

• CSS Basics

• Using Bootstrap for Responsive Web Design

• Bootstrap Components

• My favorite plugins

Follow @ramisayar

Tweet at me for slides/code.

©2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, Office, Azure, System Center, Dynamics and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION.

top related