from Hacker News

Serverless, Inc. lands $10M Series A to build serverless dev platform

by TheMissingPiece on 7/30/18, 2:17 PM with 192 comments

  • by paulgb on 7/30/18, 3:12 PM

    I don't understand the knee-jerk opposition people have to serverless architectures. I recently developed a service[1] with the serverless framework and it was the first time I enjoyed developing server-side code since the era of PHP on shared hosts, where you could just upload code and refresh the page. There's something freeing about never having to think about the server process or what happens if the server is power cycled.

    So congrats on the funding, I hope you can convert some haters :)

    [1] obligatory plug: https://notify.run

  • by sebringj on 7/30/18, 3:52 PM

    I ended up using lamda for several things ad hoc and I have to say the experience is great to quickly add functionality to specific niche things you don't necessarily want to run on your API servers because of weight or simply that having a trigger built in makes the whole flow simpler. However, the downside is if you do something stupid like create an infinite trigger accidentally your bill will exponentially increase. Always remember that part. On a $5 digital ocean instance, they will never charge you $3000 a month for accidentally doing something stupid but AWS will forgive you one time at least and I have my one time now. The most hilarious part of this whole thing...and this is really one of the main points, the $5 digital ocean kuejs (nodel.js) server instance that my AWS lamda was smashing the shit out of with millions of requests did not go down the entire time although had some intermittent slow downs of course. $5 goes a long way apparently.
  • by _Marak_ on 7/30/18, 3:05 PM

    Congratulations to Austen and Serverless Inc. for raising an additional 10m dollars. From what I've seen they are all very nice people over at Serverless.

    I've been running a small service similar to their new "Serverless Platform" for some time and was approached by them in 2014 to see about joining their team.

    Ultimately I ended up deciding not to join because I wasn't convinced there was a strong enough engineering presence in their leadership to make a good product. The next couple of years should be interesting to watch if they can actually build a profitable product.

  • by pmlnr on 7/30/18, 3:27 PM

    The coming age of people with no understanding of what running code actually means, no idea how hardware/close to hardware systems behave deep down, is going to be fabulous, and full of wasted computing.
  • by jaflo on 7/30/18, 10:08 PM

    Wooo! I'm happy for them! I am using their stuff right now for a project I'm working on (plug: https://kurz.app/) and I really appreciate the ecosystem serverless is cultivating. Simple stuff like bundling up pip requirements or syncing a local folder with a S3 bucket could be done using a script I write, but through serverless I can just install a package and have it hook in as part of each deploy.
  • by danharaj on 7/30/18, 2:55 PM

    Here's to hoping ignoring serverless will work as well as ignoring NoSQL worked for me.
  • by actionowl on 7/31/18, 5:48 AM

    We've been using serverless with AWS lambdas for a few months.

    Testing is hard, the more AWS shit you tie yourself to the harder local testing and development becomes. I picked up a lambda project another developer started and asked them how they were testing and developing locally. Answer: They deployed a new update for every change (!?)

    Debugging: Look at log files...

    Also, at some point serverless added some autocomplete crap to my .bashrc file without asking which I will never forgive them for.

  • by SSilver2k2 on 7/30/18, 4:23 PM

    Serverless is great, but I am really loving Zappa for Python Flask and Django development with Lambda and API Gateway.

    Deployed our first production tool with it and it's been working great.

  • by i386 on 7/30/18, 9:52 PM

    This looks interesting and I wish them good luck. The problem with any developer tools startup is that no matter how great the product is, the willingness to pay is very low (developers think they can replace you with a small script) and extremaly likely that your market gets slowly eaten from the bottom by open source and/or MS/Google/Amazon fold in your service into their cloud platform.
  • by robertonovelo on 7/30/18, 11:23 PM

    I usually do TDD serverless apps by debugging unit tests with jest. Is it a bad practice? Anyone can easily mock events this way, It does not matter whether its a SNS event or an HTTP event. Overall, I have had a great experience with serverless!
  • by nunez on 7/31/18, 6:26 AM

    Super happy for them. It's clear that lots of companies and people are interested in serverless, as the benefits are clear. this could be how the "microservice" actually manifests itself in a few years.
  • by neom on 7/30/18, 3:33 PM

    Hope DigitalOcean works to make this a first-class citizen on their cloud.
  • by jaequery on 7/30/18, 8:54 PM

    i think more than half the websites on the internet can run on serverless platform and that makes the web more secure and faster.