Aneesha S

How to Use Solidity on VS Code – An Easy Beginner’s Guide

One of the first programming languages for writing smart contracts to enter the industry is Solidity. Solidity is an object-oriented and high-level programming language especially personalized for creating smart contracts. Like any other language, we also need a code editor to write Solidity code. Code editors make writing languages easy with features like syntax highlighting, […]

How to Use Solidity on VS Code – An Easy Beginner’s Guide Read More »

Display Flash Messages Using Connect-Flash Module: A Detailed Node.js Guide

While surfing the web, you may come across websites that redirect you to a certain page and throw up a flash message for various reasons, such as errors, warnings or successful operation. Well, we can also implement this functionality on our Node.js application using a simple module ‘connect-flash’. For example, let’s say we are building

Display Flash Messages Using Connect-Flash Module: A Detailed Node.js Guide Read More »

$pullAll Operator in MongoDB: Remove Elements from an Array Within Documents

One of the most popular database management services available especially for Node.js is MongoDB, which includes an expansive range of advanced tools.  An application that uses such a powerful database system can include a wide range of features and functionalities. Furthermore, enhanced security functions can be implemented.  A MongoDB database allows you to build applications

$pullAll Operator in MongoDB: Remove Elements from an Array Within Documents Read More »

Query on Embedded Documents in MongoDB: Embedded Object Fields & Arrays Fields

MongoDB database contains lots of documents. Sometimes the documents have documents in them. These documents may further contain more documents hence forming a complex structure.  Querying uncomplicated documents is straightforward and we have already covered how to query MongoDB documents in another article: NodeJS MongoDB Query. However, the complex structure sometimes results in difficulty in

Query on Embedded Documents in MongoDB: Embedded Object Fields & Arrays Fields Read More »