.NET – Is the Microsoft Technology Stack Financially Viable for Startups?

asp.netasp.net-mvc-3web-hosting

I have an unpaid internship for a very new startup company with little tech experience that's trying to be a Groupon clone. They're currently using WordPress and I've been trying to decide what web framework to push them towards, since I'll have to learn that language and implement it as well.

Is ASP.Net MVC a realistic option for a web based startup company with little financial backing? For example, I know in the Rails hosting is slightly cheaper because of the whole free OS thing and there are free "gems" available to do things like a mailers, but how much more expensive can it get if I go with ASP.Net MVC since such add-ons stop being open source?

How much does the cost of hosting for .NET applications add to the equation?

Best Answer

Not a whole lot. The people to program things, and the people to manage the infrastructure are a few orders of magnitude more expensive than any hosting cost issues you can run across. There are plenty of free "gems" -- check out nuget for .NET's version of that. Cloud-wise, both EC2 and Azure offer windows boxes so you aren't stuck owning hardware.

The one place it probably could get more expensive is in developer tools -- most of the OS stuff has a few FOSS tools of choice, whereas with .NET good most tools are not free. While you can get MSDN Ultimate subscriptions for all your developers, free for three years (check out bizspark), you will have to pay for that stuff after the initial three-year period. And there are some necessary ancillary tools such as resharper. TeamCity is an awesome build server but it isn't free either. You get the idea.

See StackOverflow for a huge Q&A community with lots of .NET devs. It is a very well documented, well supported platform.

Personally, I would avoid startups with shaky backing these days, but even in that case one could make headway with ASP.NET. The game is about Minimum Viable Product and .NET can get you there just as well as rails with the right team.

Related Topic