Archives
-
Building Web App Using MEAN Stack–Part 4: Front End Implementation–II
This is the last part of the four part blog series on building web applications using MEAN stack, TypeScript and Visual Studio Code. In the previous three parts we have covered the following things :
-
Building Web App Using MEAN Stack–Part 3: Front End Implementation - I
In the previous two posts(part-1 & part-2) we have gone through the steps of installing required software's and setting up of our applications back-end server functionality. In this and the next module, we will concentrate on building front-end of our application using AngularJs, TypeScript & Bootstrap. In this post, we will focus on building following things :
-
Building Web App Using MEAN Stack–Part 2 : Node & Mongoose Setup
In the previous post, we went through the steps of installing necessary software's & modules required for building our application. In this post, we are going to concentrate on our application backend i.e. setting up node as as web server & mongoose related codebase for performing CRUD activities in the underlying mongo database.
-
Building Web App Using MEAN Stack–Part 1 : SetUp
In this multi-part blog series, I will walk you through on how to build a small web application using Nodejs, MongoDb, TypeScript & AngularJs. We will be building a small web application for creating and registering teams. A team will have team members and a unique team name. The application will have two screens. First one used for creating a new team and the other one used for listing all the registered teams. In this post, we will concentrate on installing & setting up of required software's. Let’s get started.
-
Configuring VS Code for Node & TypeScript Development
In this blog post, I will outline the bare-minimum steps required to configure or setup VS Code for Node & TypeScript development. If you have never heard about VS Code, then you can go through the documentation here. If you are having Pluralsight subscription, then you can also watch(and skip this article) on Visual Studio Code by John Papa : http://www.pluralsight.com/courses/visual-studio-code.
-
Going Functional : Symbol Graph Implementation in F#
In the previous post, we have seen the implementation of undirected graph data structure in F#. In this post, we will make use of the Graph data structure to implement the Symbol Graph data structure. You can read more about Symbol Graph data structure here. Given below is the java based implementation of Symbol Graph data structure. The implementation if taken from Algorithms 4th Edition by Robert Sedgewick and Kevin Wayne.