Is it worth moving from Microsoft tech to Linux, NodeJS & other open source frameworks to save money for a start-up?

Posted by dormisher on Programmers See other posts from Programmers or by dormisher
Published on 2012-07-17T14:31:11Z Indexed on 2012/10/03 15:51 UTC
Read the original article Hit count: 217

I am currently getting involved in a startup, I am the only developer involved at the moment, and the other guys are leaving all the tech decisions up to me at the moment.

For my day job I work at a software house that uses Microsoft tech on a day to day basis, we utilise .NET, SqlServer, Windows Server etc. However, I realise that as a startup we need to keep costs down, and after having a brief look at the cost of hosting for Windows I was shocked to see some of the prices for a dedicated server. The cheapest I found was £100 a month. Also if the business needs to scale in the future and we end up needing multiple servers, we could end up shelling out £10's of £000's a year in SQL Server / Windows Server licenses etc.

I then had a quick look at the price of Linux hosting for a dedicated server and saw the price was waaaaaay lower than windows hosting. One place was offering a machine with 2 cores for less than £20 a month.

This got me thinking maybe the way to go is open source on Linux.

As I write a lot of Javascript at work (I'm working on a single page backbone app at the moment), I thought maybe NodeJS and a web framework like Express would be cool to use. I then thought that instead of using SQL why not use an open source NoSQL database like MongoDB, which has great support on NodeJS?

My only concern is that some of the work the application is going to do is going to be dynamically building images and various other image related stuff, i.e. stuff that is quite CPU heavy - so I'm thinking of maybe writing anything CPU heavy in C++ and consuming it as a module in Node.

That's the background - but basically is Linux a good match for:

  1. Hosting a NodeJS/Express site?
  2. Compiling C++ node modules?
  3. Using a NoSQL DB like MongoDB?

And is it a good idea to move to these unfamiliar technologies to save money?

© Programmers or respective owner

Related posts about web-development

Related posts about open-source