hexicle
hexicle

Reputation: 2187

Can I develop non-Microsoft web applications/websites on Microsoft IDEs?

Is it possible for me to develop web applications that do not use ASP.NET or MVC.NET or basically anything microsoft (e.g. it uses HTML, JS, CSS, Node.js, jQuery, PHP, AJAX) on the Microsoft Visual Express 2012 and/or the Microsoft Webmatrix

Upvotes: 0

Views: 56

Answers (1)

Mike Brind
Mike Brind

Reputation: 30065

You can use WebMatrix to develop sites using non-Microsoft technologies such as PHP and Node. It has built-in PHP code completion and offers some PHP templates. It has the same features in support of Nodejs development. It also includes a Nuget client to make it easy to download jQuery into your site and it's default templates are HTML5.

Visual Studio does not offer any official PHP or Nodejs support. There is an extension that offers some kind of support for Nodejs.

Upvotes: 1

Related Questions