SlideShare una empresa de Scribd logo
1 de 22
Marko Barić
marko.baric@siemens.com
Introducing ASP.NET 5
The next generation of Microsoft web framework
• What's wrong with current ASP.NET and why
change it?
• So, what's changed?
• OWIN, modularity, bye-bye sytem.web
• Changes that matter to developers
• New project structure, JSON configurations, Roslyn,
dependency management, compiling for multiple
platforms
• The "K" world
• MVC 6 features
• POCO controllers, DI
Agenda
Current ASP.NET stack
Windows Server
IIS
.NET Framework
ASP.NET
Web
Forms
MVC Web API
System.Web
HTTP
Modules
HTTP
Handlers
Request
Pipeline
Caching
Session
State
• Limited hosting possibilities (IIS only)
• Dependency on IIS environment (System.Web)
• Web evolves faster than .NET framework
• Requires full-blown .NET framework - resource
intensive and not web-friendly
• Hard to optimize for lightweight high-performance
apps
• Not completely cloud-optimized
Problems with ASP.NET architecture
Introducing ASP.NET 5 stack
OS
.NET CLR
ASP.NET
Web API MVC Web Pages
Host
IIS Self-hosted
.NET Core CLR
OWIN
• Totally modular
• NuGet is first-class citizen in ASP.NET 5
• Everything is a package
• Lightweight - you use minumum set of modules
• Faster startup, lower memory (>90%)
• Does not require .NET Framework installation -
runtime environment (CLR) can be deployed with
your application
Key improvements in ASP.NET 5
Key improvements in ASP.NET 5
• Cross platform - can be hosted anywhere:
• IIS, self-hosted, Linux, MAC...
• Web Forms are left aside for now
• Better developer experience
• No-compile debugging with Roslyn, MVC unified
programming model, basic DI out-of-the-box...
• Everything is open-source
• Architecture is OWIN based
Let's talk about OWIN
• Open Web INterfaces
• Public standard created by Microsoft
(http://owin.org/)
• Decouples application from server
• Enforces modularity of the server
• Stack of modules (middlewares) is processing the
request from application to server
• Microsoft implementation of OWIN is "Katana"
Katana implementation
Host
Middleware
Server
Application
Middleware
Middleware
Request Response
Startup, bootstrapping,
process management
Manages sockets,
delegates to middlewares
Pass-through
components stack
Your code
• Modularity - small and focused components
• Flexibility - gives control to use only needed
middlewares
• Performance - uses fewer computing resources
• Scalability - add new middlewares on demand
• Portability - host application anywhere
• ASP.NET pipeline on IIS
• ASP.NET pipeline without IIS (Kestrel web server)
• Self-hosted
• OwinHost.exe
Power of Katana
Katana implementation
• There are two important objects in Katana
implementation:
• Environment dictionary:
IDictionary<string, object>
• Application delegate:
Func<IDictionary<string, object>, Task>
...
owin.RequestBody
owin.RequestHeaders
owin.RequestQueryString
owin.RequestProtocol
...
• ASP.NET 5 is still in preview
• Comming with Visual Studio 2015,
currently available version is CTP 5
You can try it while it's hot!
DEMO
{ New project structure }
• Dependencies - lists all the dependencies of your
application (NuGet, source files, etc.)
• Configuration - compilation settings (debug, release)
• Frameworks - target frameworks with their
dependencies
• Sources - what should be compiled
• Web root - server root of the app
• Shared files - files shared with dependent projects
• Commands - commands available to "K.cmd"
• Scripts - pre/post events to hook scripts to
• Metadata - general project information
Structure of the "project.json" file
• KRE - Runtime Environment
• Engine that runs your application (compilation system,
SDK tools, and the native CLR hosts)
• KVM - Version Manager
• Tool for updating and installing different versions of KRE
• KPM - Package Manager
• Tool to restore and install (NuGet) packages needed by
applications to run
• K
• Entry point to the runtime - starts the runtime with
commands
"K" command line tools
DEMO
{ The "K" tools }
ASP.NET today - similar, but different
ASP.NET MVC 6
Web Pages + MVC + Web API =
ASP.NET MVC 6!
• Comes with package Microsoft.AspNet.Mvc
• One controller type for all
• Microsoft.AspNet.Mvc.Controller or
POCO controller
• Built-in DI support for environment services
• Can be replaced with your favourite (Ninject,
Autofac...)
DEMO
{ MVC 6 }
• ASP.NET home page:
• http://asp.net/vnext
• Code:
• ASP.NET 5: http://github.com/aspnet/home
• .NET Core: http://github.com/dotnet/home
• API Portability Analyzer:
https://www.microsoft.com/en-
us/download/details.aspx?id=42678
Resources
Q & A?
Thank you!

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

Microsoft ASP.NET 5 - The new kid on the block
Microsoft ASP.NET 5 - The new kid on the block Microsoft ASP.NET 5 - The new kid on the block
Microsoft ASP.NET 5 - The new kid on the block
 
MVC 6 Introduction
MVC 6 IntroductionMVC 6 Introduction
MVC 6 Introduction
 
Mini-Training Owin Katana
Mini-Training Owin KatanaMini-Training Owin Katana
Mini-Training Owin Katana
 
A Whirldwind Tour of ASP.NET 5
A Whirldwind Tour of ASP.NET 5A Whirldwind Tour of ASP.NET 5
A Whirldwind Tour of ASP.NET 5
 
Spring Boot. Boot up your development. JEEConf 2015
Spring Boot. Boot up your development. JEEConf 2015Spring Boot. Boot up your development. JEEConf 2015
Spring Boot. Boot up your development. JEEConf 2015
 
ASP.NET: Present and future
ASP.NET: Present and futureASP.NET: Present and future
ASP.NET: Present and future
 
ASP.NET 5: What's the Big Deal
ASP.NET 5: What's the Big DealASP.NET 5: What's the Big Deal
ASP.NET 5: What's the Big Deal
 
Debugging your Way through .NET with Visual Studio 2015
Debugging your Way through .NET with Visual Studio 2015Debugging your Way through .NET with Visual Studio 2015
Debugging your Way through .NET with Visual Studio 2015
 
ASP.NET Core 1.0 Overview
ASP.NET Core 1.0 OverviewASP.NET Core 1.0 Overview
ASP.NET Core 1.0 Overview
 
Introducing ASP.NET Core 2.0
Introducing ASP.NET Core 2.0Introducing ASP.NET Core 2.0
Introducing ASP.NET Core 2.0
 
ASP.Net 5 and C# 6
ASP.Net 5 and C# 6ASP.Net 5 and C# 6
ASP.Net 5 and C# 6
 
ASP.NET Core 1.0
ASP.NET Core 1.0ASP.NET Core 1.0
ASP.NET Core 1.0
 
Getting Started with ASP.NET Core 1.0 (formerly ASP.NET 5)
Getting Started with ASP.NET Core 1.0 (formerly ASP.NET 5)Getting Started with ASP.NET Core 1.0 (formerly ASP.NET 5)
Getting Started with ASP.NET Core 1.0 (formerly ASP.NET 5)
 
Microservices: Yes or not?
Microservices: Yes or not?Microservices: Yes or not?
Microservices: Yes or not?
 
Evolution / History of ASP.NET
Evolution / History of ASP.NETEvolution / History of ASP.NET
Evolution / History of ASP.NET
 
ASP.NET Core: The best of the new bits
ASP.NET Core: The best of the new bitsASP.NET Core: The best of the new bits
ASP.NET Core: The best of the new bits
 
ASP.NET Core MVC + Web API with Overview
ASP.NET Core MVC + Web API with OverviewASP.NET Core MVC + Web API with Overview
ASP.NET Core MVC + Web API with Overview
 
ASP.NET Core MVC + Web API with Overview
ASP.NET Core MVC + Web API with OverviewASP.NET Core MVC + Web API with Overview
ASP.NET Core MVC + Web API with Overview
 
ASP.NET Core 2.1: The Future of Web Apps
ASP.NET Core 2.1: The Future of Web AppsASP.NET Core 2.1: The Future of Web Apps
ASP.NET Core 2.1: The Future of Web Apps
 
SpringPeople Introduction to Spring Framework
SpringPeople Introduction to Spring FrameworkSpringPeople Introduction to Spring Framework
SpringPeople Introduction to Spring Framework
 

Similar a Introduction to ASP.NET 5

Similar a Introduction to ASP.NET 5 (20)

ASP.NET 5
ASP.NET 5ASP.NET 5
ASP.NET 5
 
ASP.NET vNext
ASP.NET vNextASP.NET vNext
ASP.NET vNext
 
Migration from ASP.NET MVC to ASP.NET Core
Migration from ASP.NET MVC to ASP.NET CoreMigration from ASP.NET MVC to ASP.NET Core
Migration from ASP.NET MVC to ASP.NET Core
 
Short-Training asp.net vNext
Short-Training asp.net vNextShort-Training asp.net vNext
Short-Training asp.net vNext
 
Cloud compiler - Minor Project by students of CBPGEC
Cloud compiler - Minor Project by students of CBPGEC  Cloud compiler - Minor Project by students of CBPGEC
Cloud compiler - Minor Project by students of CBPGEC
 
ASP.NET 5 - Microsoft's Web development platform reimagined
ASP.NET 5 - Microsoft's Web development platform reimaginedASP.NET 5 - Microsoft's Web development platform reimagined
ASP.NET 5 - Microsoft's Web development platform reimagined
 
Rami Sayar - Node microservices with Docker
Rami Sayar - Node microservices with DockerRami Sayar - Node microservices with Docker
Rami Sayar - Node microservices with Docker
 
OpenStack and Windows
OpenStack and WindowsOpenStack and Windows
OpenStack and Windows
 
MVC 6 - the new unified Web programming model
MVC 6 - the new unified Web programming modelMVC 6 - the new unified Web programming model
MVC 6 - the new unified Web programming model
 
ASP.NET
ASP.NETASP.NET
ASP.NET
 
Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...
Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...
Tokyo Azure Meetup #7 - Introduction to Serverless Architectures with Azure F...
 
Get acquainted with the new ASP.Net 5
Get acquainted with the new ASP.Net 5Get acquainted with the new ASP.Net 5
Get acquainted with the new ASP.Net 5
 
The future of ASP.NET / CodeCamp/Iasi 25 Oct 2014
The future of ASP.NET / CodeCamp/Iasi 25 Oct 2014The future of ASP.NET / CodeCamp/Iasi 25 Oct 2014
The future of ASP.NET / CodeCamp/Iasi 25 Oct 2014
 
Containers, Serverless and Functions in a nutshell
Containers, Serverless and Functions in a nutshellContainers, Serverless and Functions in a nutshell
Containers, Serverless and Functions in a nutshell
 
AMIS Oracle OpenWorld 2015 Review – part 2- Hardware & IaaS and PaaS Cloud Fo...
AMIS Oracle OpenWorld 2015 Review – part 2- Hardware & IaaS and PaaS Cloud Fo...AMIS Oracle OpenWorld 2015 Review – part 2- Hardware & IaaS and PaaS Cloud Fo...
AMIS Oracle OpenWorld 2015 Review – part 2- Hardware & IaaS and PaaS Cloud Fo...
 
Oracle application container cloud back end integration using node final
Oracle application container cloud back end integration using node finalOracle application container cloud back end integration using node final
Oracle application container cloud back end integration using node final
 
Introducing ASP.NET vNext – The Future of .NET on the Server | FalafelCON 2014
Introducing ASP.NET vNext – The Future of .NET on the Server | FalafelCON 2014Introducing ASP.NET vNext – The Future of .NET on the Server | FalafelCON 2014
Introducing ASP.NET vNext – The Future of .NET on the Server | FalafelCON 2014
 
Asp.NETZERO - A Workshop Presentation by Citytech Software
Asp.NETZERO - A Workshop Presentation by Citytech SoftwareAsp.NETZERO - A Workshop Presentation by Citytech Software
Asp.NETZERO - A Workshop Presentation by Citytech Software
 
Docker for the enterprise
Docker for the enterpriseDocker for the enterprise
Docker for the enterprise
 
Les nouveautés ASP.NET 5 avec Visual Studio 2015
Les nouveautés ASP.NET 5 avec Visual Studio 2015Les nouveautés ASP.NET 5 avec Visual Studio 2015
Les nouveautés ASP.NET 5 avec Visual Studio 2015
 

Último

%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
masabamasaba
 

Último (20)

%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
Right Money Management App For Your Financial Goals
Right Money Management App For Your Financial GoalsRight Money Management App For Your Financial Goals
Right Money Management App For Your Financial Goals
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 

Introduction to ASP.NET 5

  • 1. Marko Barić marko.baric@siemens.com Introducing ASP.NET 5 The next generation of Microsoft web framework
  • 2. • What's wrong with current ASP.NET and why change it? • So, what's changed? • OWIN, modularity, bye-bye sytem.web • Changes that matter to developers • New project structure, JSON configurations, Roslyn, dependency management, compiling for multiple platforms • The "K" world • MVC 6 features • POCO controllers, DI Agenda
  • 3. Current ASP.NET stack Windows Server IIS .NET Framework ASP.NET Web Forms MVC Web API System.Web HTTP Modules HTTP Handlers Request Pipeline Caching Session State
  • 4. • Limited hosting possibilities (IIS only) • Dependency on IIS environment (System.Web) • Web evolves faster than .NET framework • Requires full-blown .NET framework - resource intensive and not web-friendly • Hard to optimize for lightweight high-performance apps • Not completely cloud-optimized Problems with ASP.NET architecture
  • 5. Introducing ASP.NET 5 stack OS .NET CLR ASP.NET Web API MVC Web Pages Host IIS Self-hosted .NET Core CLR OWIN
  • 6. • Totally modular • NuGet is first-class citizen in ASP.NET 5 • Everything is a package • Lightweight - you use minumum set of modules • Faster startup, lower memory (>90%) • Does not require .NET Framework installation - runtime environment (CLR) can be deployed with your application Key improvements in ASP.NET 5
  • 7. Key improvements in ASP.NET 5 • Cross platform - can be hosted anywhere: • IIS, self-hosted, Linux, MAC... • Web Forms are left aside for now • Better developer experience • No-compile debugging with Roslyn, MVC unified programming model, basic DI out-of-the-box... • Everything is open-source • Architecture is OWIN based
  • 8. Let's talk about OWIN • Open Web INterfaces • Public standard created by Microsoft (http://owin.org/) • Decouples application from server • Enforces modularity of the server • Stack of modules (middlewares) is processing the request from application to server • Microsoft implementation of OWIN is "Katana"
  • 9. Katana implementation Host Middleware Server Application Middleware Middleware Request Response Startup, bootstrapping, process management Manages sockets, delegates to middlewares Pass-through components stack Your code
  • 10. • Modularity - small and focused components • Flexibility - gives control to use only needed middlewares • Performance - uses fewer computing resources • Scalability - add new middlewares on demand • Portability - host application anywhere • ASP.NET pipeline on IIS • ASP.NET pipeline without IIS (Kestrel web server) • Self-hosted • OwinHost.exe Power of Katana
  • 11. Katana implementation • There are two important objects in Katana implementation: • Environment dictionary: IDictionary<string, object> • Application delegate: Func<IDictionary<string, object>, Task> ... owin.RequestBody owin.RequestHeaders owin.RequestQueryString owin.RequestProtocol ...
  • 12. • ASP.NET 5 is still in preview • Comming with Visual Studio 2015, currently available version is CTP 5 You can try it while it's hot!
  • 13. DEMO { New project structure }
  • 14. • Dependencies - lists all the dependencies of your application (NuGet, source files, etc.) • Configuration - compilation settings (debug, release) • Frameworks - target frameworks with their dependencies • Sources - what should be compiled • Web root - server root of the app • Shared files - files shared with dependent projects • Commands - commands available to "K.cmd" • Scripts - pre/post events to hook scripts to • Metadata - general project information Structure of the "project.json" file
  • 15. • KRE - Runtime Environment • Engine that runs your application (compilation system, SDK tools, and the native CLR hosts) • KVM - Version Manager • Tool for updating and installing different versions of KRE • KPM - Package Manager • Tool to restore and install (NuGet) packages needed by applications to run • K • Entry point to the runtime - starts the runtime with commands "K" command line tools
  • 16. DEMO { The "K" tools }
  • 17. ASP.NET today - similar, but different
  • 18. ASP.NET MVC 6 Web Pages + MVC + Web API = ASP.NET MVC 6! • Comes with package Microsoft.AspNet.Mvc • One controller type for all • Microsoft.AspNet.Mvc.Controller or POCO controller • Built-in DI support for environment services • Can be replaced with your favourite (Ninject, Autofac...)
  • 20. • ASP.NET home page: • http://asp.net/vnext • Code: • ASP.NET 5: http://github.com/aspnet/home • .NET Core: http://github.com/dotnet/home • API Portability Analyzer: https://www.microsoft.com/en- us/download/details.aspx?id=42678 Resources

Notas del editor

  1. - Prva verzija ASP.NET-a je izašla 2002. godine - Ova promjena je velika kao prelazak s ASP na ASP.NET
  2. http://developer.telerik.com/featured/microsofts-special-k-an-introduction-to-asp-net-vnext/ - Core CLR, k10, Cloud optimised CLR,... Cloud optimised znači da je framework svjestan clouda. Inače bi kod skaliranja trebali raditi razne trikove, npr. ako skaliramo web aplikaciju da se vrti na 3 VM-a, to neće proći glatko (load balancing, dijeljenje sessiona - treba nam node afinity, sticky session, dijeljenje cachea, itd.) - To je podskup frameworka 4.6 - nema WinForms, WPF, WCF, Workflows... Distribuira se s aplikacijom kako svaki drugi paket. - Sadrži CLR, JIT compiler, osnovne tipove, liste i sl. Sve drugo se dodaje kao NuGet. - Request sa sobom nosi razne objekte zakačene (server, session, cache), ali ako nam ne trebaju nego npr. samo pisati JSON ili stream videa u socket onda je sve ostalo višak. Zato su i suporedbe Node.js sa ASP.NET-om besmislene - ne može se uspoređivati goli socket za svom infrastrukturom koju iza sebe nosi ASP.NET. - Nema veze na registry, na GAC, na system32 - WebMatrix je IDE za WebPages