commit
8d5e331053
11 changed files with 81 additions and 11 deletions
@ -1,3 +1,3 @@ |
||||
# Learn a Language |
||||
|
||||
It doesn't matter what language you pick, but it is important to learn at least one. You will be able to use that language write automation scripts. |
||||
It doesn't matter what language you pick, but it is important to learn at least one. You will be able to use that language to write automation scripts. |
||||
|
@ -1 +1,8 @@ |
||||
# Observable pattern |
||||
# Observable Pattern |
||||
|
||||
The observer pattern is a software design pattern in which an object, named the subject, maintains a list of its dependents, called observers, and notifies them automatically of any state changes, usually by calling one of their methods. |
||||
|
||||
Angular uses the Observer pattern which simply means — Observable objects are registered, and other objects observe (in Angular using the subscribe method) them and take action when the observable object is acted on in some way. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink badgeText='Read' colorScheme='yellow' href='https://medium.com/fuzzycloud/angular-and-observable-4bf890b2a282'>Angular and Observable</BadgeLink> |
@ -1 +1,5 @@ |
||||
# Rxjs basics |
||||
# RxJS Basics |
||||
|
||||
Reactive Extensions for JavaScript, or RxJS, is a reactive library used to implement reactive programming to deal with async implementation, callbacks, and event-based programs. |
||||
|
||||
The reactive paradigm can be used in many different languages through the use of reactive libraries. These libraries are downloaded APIs that provide functionalities for reactive tools like observers and operators. It can be used in your browser or with Node.js. |
||||
|
@ -1 +1,5 @@ |
||||
# Templates |
||||
|
||||
A template is a form of HTML that tells Angular how to render the component. |
||||
|
||||
<BadgeLink href="https://angular.io/guide/architecture-components" colorScheme="yellow" badgeText="Read">Introduction to Components and Templates</BadgeLink> |
||||
|
@ -1 +1,12 @@ |
||||
# Guards |
||||
# Route Guards |
||||
|
||||
Angular route guards are interfaces provided by Angular which, when implemented, allow us to control the accessibility of a route based on conditions provided in class implementation of that interface. |
||||
|
||||
Some types of angular guards are `CanActivate`, `CanActivateChild`, `CanLoad`, `CanDeactivate` and `Resolve`. |
||||
|
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://angular.io/api/router'>Angular Official Website</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://angular.io/api/router/CanActivate'>Can Activate Guard</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://angular.io/api/router/CanActivateChild'>Can Activate Child</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://angular.io/api/router/CanDeactivate'>Can Deactivate</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://angular.io/api/router/CanLoad'>Angular Can Load</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://angular.io/api/router/CanMatch'>Can Match</BadgeLink> |
||||
|
@ -1 +1,6 @@ |
||||
# Nodejs working with files |
||||
# Working with Files |
||||
|
||||
You can programmatically manipulate files in Node.js with the built-in `fs` module. The name is short for “file system,” and the module contains all the functions you need to read, write, and delete files on the local machine. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.digitalocean.com/community/tutorials/how-to-work-with-files-using-the-fs-module-in-node-js'>How To Work with Files using the fs Module in Node.js</BadgeLink> |
||||
|
@ -1 +1,8 @@ |
||||
# Process stdin |
||||
|
||||
The process.stdin is a standard Readable stream which listens for user input and is accessible via the process module. It uses on() function to listen for input events. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
|
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://nodejs.org/api/process.html#processstdin'>Official Documentation</BadgeLink> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.geeksforgeeks.org/node-js-process-stdin-property'>Node.js process.stdin Property</BadgeLink> |
||||
|
@ -1 +1,7 @@ |
||||
# Prompts |
||||
|
||||
Prompts is a higher level and user friendly interface built on top of Node.js's inbuilt `Readline` module. It supports different type of prompts such as text, password, autocomplete, date, etc. It is an interactive module and comes with inbuilt validation support. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
|
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://www.npmjs.com/package/prompts'>Official Documentation</BadgeLink> |
||||
|
@ -1 +1,9 @@ |
||||
# Inquirer |
||||
|
||||
Inquirer.js is a collection of common interactive command line interfaces for taking inputs from user. It is promise based and supports chaining series of prompt questions together. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
|
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://www.npmjs.com/package/inquirer'>Official Documentation</BadgeLink> |
||||
<BadgeLink badgeText='Watch' href='https://www.youtube.com/watch?v=0xjfkl9nODQ'>How to make a CLI in Node.js with Inquirer</BadgeLink> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://www.digitalocean.com/community/tutorials/nodejs-interactive-command-line-prompts'>How To Create Interactive Command-line Prompts with Inquirer.js</BadgeLink> |
||||
|
@ -1,7 +1,10 @@ |
||||
# Express.js |
||||
|
||||
Express is a minimal and flexible Node.js web application framework that provides a robust set of features to build web applications and APIs. |
||||
Express is a node js web application framework that provides broad features for building web and mobile applications. It is used to build a single page, multipage, and hybrid web application. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://expressjs.com/'>Express.js Official Website</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Getting Started' href='https://expressjs.com/en/starter/installing.html'>Official Getting Started Guide</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Full Guide' href='https://www.tutorialspoint.com/nodejs/nodejs_express_framework.html'>Express Full Guide</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Project' href='https://auth0.com/blog/create-a-simple-and-stylish-node-express-app/'>Sample Project</BadgeLink> |
||||
<BadgeLink colorScheme='blue' badgeText='Explanation' href='https://www.freecodecamp.org/news/express-explained-with-examples-installation-routing-middleware-and-more/'>Express Explained with Examples</BadgeLink> |
||||
|
@ -1 +1,16 @@ |
||||
# Nodejs streams |
||||
|
||||
Streams are a type of data handling methods and are used to read, write or transform chunks of data piece by piece without keeping it in memory all at once. There are four types of streams in Node.js. |
||||
|
||||
- **Readable**: streams from which data can be read. |
||||
- **Writable**: streams to which we can write data. |
||||
- **Duplex**: streams that are both Readable and Writable. |
||||
- **Transform**: streams that can modify or transform the data as it is written and read. |
||||
|
||||
Multiple streams can be chained together using `pipe()` method. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
|
||||
<BadgeLink colorScheme='blue' badgeText='Official Website' href='https://nodejs.org/api/stream.html'>Stream API Official Documentation</BadgeLink> |
||||
<BadgeLink badgeText='Watch' href='https://www.youtube.com/watch?v=GlybFFMXXmQ'>Node.js Streams tutorial</BadgeLink> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://nodesource.com/blog/understanding-streams-in-nodejs'>Understanding Streams in Node.js</BadgeLink> |
||||
|
Loading…
Reference in new issue