StackShareStackShare
Follow on
StackShare

Discover and share technology stacks from companies around the world.

Follow on

© 2025 StackShare. All rights reserved.

Product

  • Stacks
  • Tools
  • Feed

Company

  • About
  • Contact

Legal

  • Privacy Policy
  • Terms of Service
  1. Home
  2. Companies
  3. Cloudcraft
Cloudcraft logo

Cloudcraft

Verified

Tools for AWS Pros

New Yorkwww.cloudcraft.co
21
Tools
10
Decisions
43
Followers

Tech Stack

Application & Data

14 tools

JavaScript logo
JavaScript
Node.js logo
Node.js
ExpressJS logo
ExpressJS
Redis logo
Redis
NGINX logo
NGINX
AWS Lambda logo
AWS Lambda
AWS Elastic Load Balancing (ELB) logo
AWS Elastic Load Balancing (ELB)
Amazon DynamoDB logo
Amazon DynamoDB
Amazon Route 53 logo
Amazon Route 53
Amazon S3 logo
Amazon S3
Amazon EC2 logo
Amazon EC2
Amazon CloudFront logo
Amazon CloudFront
PostgreSQL logo
PostgreSQL
Amazon RDS logo
Amazon RDS

Utilities

1 tool

Amazon SQS logo
Amazon SQS

DevOps

4 tools

gulp logo
gulp
Babel logo
Babel
WebStorm logo
WebStorm
Ansible logo
Ansible

Business Tools

2 tools

React logo
React
Material-UI logo
Material-UI

Team Members

Tomas Junnonen
Tomas JunnonenCEO

Engineering Blog

Stack Decisions

Tomas Junnonen
Tomas Junnonen

Nov 7, 2015

Gulp is used as the build system for Cloudcraft.co with a lot of custom targets: vendoring dependencies, transpiling ES2015 to Ecmascript5 (with Babel), incremental compilation of multiple watched modules, minification, creation of app distribution packages etc. Having previously used Grunt, I've come to greatly prefer Gulp due to the ability to easily write my own tasks using plain JS without necessarily relying on plugins for everything. gulp

2.73k views2.73k
Comments
Tomas Junnonen
Tomas Junnonen

Nov 7, 2015

Babel is awesome! 100% of the code for Cloudcraft.co is transpiled from ES2015 (even some ES7 extensions, like decorators and class properties!), using Gulp+Browserify for the frontend and on-the-fly translation in the Node.js backend. Babel allows us to use all the features of future JS, today, giving us a efficient and clean codebase. Overall, it has been an exceptionally smooth adoption, everything Just Works(tm), including debugging with source maps, etc. Babel

1.78k views1.78k
Comments
Tomas Junnonen
Tomas Junnonen

Nov 7, 2015

Express.js is the workhorse of the Cloudcraft.co backend. It's not the most exciting part of a stack, but it works, is very well documented, and you can find a plugin for almost everything you could possibly want. We also carefully evaluated Koa.js, but decided not to go down this route: fewer plugins, less documentation & answers online. I'm also not personally convinced by the generators yield syntax at all. ES7 async functions looks like a much better bet, and with Promises and Babel I can have that already today. ExpressJS

506 views506
Comments
Tomas Junnonen
Tomas Junnonen

Nov 7, 2015

WebStorm is the best IDE hands-down for JavaScript developers. Yes, there's more lightweight editors (and nothing beats vim when debugging remotely), but the sheer productivity of WebStorm is unparalleled. React/JSX support? Check. ES2015 support? You bet. Node.js profiling? Yes! Look, if you can't rename a class or variable reliably across a JavaScript project, follow references, debug (without console logs) your editor sucks. Don't use a editor that sucks, use WebStorm! WebStorm

9.38k views9.38k
Comments
Tomas Junnonen
Tomas Junnonen

Nov 7, 2015

Ansible is the deployment tool for people who don't like deployment tools. It's close to scripting, doesn't pollute your servers with agents or centralized servers, and just makes immediate sense. The entire stack at Cloudcraft.co is orchestrated by Ansible. What does that mean? Beyond the obvious of installing packages and configuring services, Ansible coordinates all the machines into a working deployment: It adds API servers to the loadbancer pool, opens ports on the DB server for the backend servers to connect, gracefully upgrades services in a rolling fashion for zero-downtime deployments etc. And it's so easy to use, it's easier to use than doing things by hand, meaning it's a deployment tool you'll actually use every time! Ansible

1.34k views1.34k
Comments
Tomas Junnonen
Tomas Junnonen

Nov 7, 2015

Redis is used for storing all ephemeral (that's data you don't necessarily want to store permanently) user data, such as mapping of session IDs (stored in cookies) to current session variables at Cloudcraft.co. The many datastructures supported by Redis also makes it an excellent caching and realtime statistics layer. It doesn't hurt that the author, Antirez, is the nicest guy ever! These days, I would be really hard pressed to find any situation where I would pick something like Memcached over Redis. Redis

735 views735
Comments
Tomas Junnonen
Tomas Junnonen

Nov 7, 2015

PostgreSQL combines the best aspects of traditional SQL databases such as reliability, consistent performance, transactions, querying power, etc. with the flexibility of schemaless noSQL systems that are all the rage these days. Through the powerful JSON column types and indexes, you can now have your cake and eat it too! PostgreSQL may seem a bit arcane and old fashioned at first, but the developers have clearly shown that they understand databases and the storage trends better than almost anyone else. It definitely deserves to be part of everyone's toolbox; when you find yourself needing rock solid performance, operational simplicity and reliability, reach for PostgresQL. PostgreSQL

357 views357
Comments
Tomas Junnonen
Tomas Junnonen

Nov 7, 2015

Material UI provides Cloudcraft.co with a clean, professional looking and very easy to use set of UI components build with React. The few issues we've reported to the developers have been quickly fixed each time. I highly recommend using Material UI for both consumer and enterprise web apps. The styling system in particular is very nice to work with, and allows you to easily add your own brand's look and feel throughout the UI. Material-UI

82.6k views82.6k
Comments
Tomas Junnonen
Tomas Junnonen

Nov 7, 2015

Web-frontend programming prior to React: like banging rocks together. With React: Like wearing fusion powered underwear. Gives you a nice warm feeling. Using React for Cloudcraft.co allowed us to create a beautiful UI in record time (1 month start to launch), with virtually no bugs popping up during development. The functional approach to just rendering your component given a state just makes so much sense, with React figuring out the delta between your current and desired representation. It's the future kids! React

440 views440
Comments
Tomas Junnonen
Tomas Junnonen

Nov 7, 2015

JavaScript gets a bad rep, quite undeservedly so in my opinion. Today, JS is closer to functional languages than to the traditional-OO languages, and when used as such provides a great development experience. The pace of development is just picking up with transpilers like Babel making future advanced language features available to the masses today. At Cloudcraft.co, we write 100% of both the front-end (with React) and the backend (with Node.js) in Javascript, using the latest ES6 and even some ES7 features. This is not your grandfather's Javascript! JavaScript

468 views468
Comments