Skip to content

Instantly share code, notes, and snippets.

View cfernandomaciel's full-sized avatar
💭
I may be slow to respond.

Claudio Fernando Maciel cfernandomaciel

💭
I may be slow to respond.
View GitHub Profile
@cfernandomaciel
cfernandomaciel / angular-cli-node-js-typescript-rxjs-compatiblity-matrix.csv
Created August 28, 2021 15:55 — forked from LayZeeDK/angular-cli-node-js-typescript-rxjs-compatiblity-matrix.csv
Angular CLI, Angular, Node.js, TypeScript, and RxJS compatibility matrix. Based on changelogs, metadata, and hands-on experience. Major versions above officially supported versions are not listed. Note that minor TypeScript versions also contain breaking changes.
Angular CLI version Angular version Node.js version TypeScript version RxJS version
1.0.0-beta.17 (package name: angular-cli) 2.0.x 6.9.x or later minor version 2.0.x 5.0.x/5.1.x/5.2.x/5.3.x/5.4.x/5.5.x
1.0.0-beta.20-1 (package name: angular-cli) 2.1.x 6.9.x or later minor version 2.0.x 5.0.x/5.1.x/5.2.x/5.3.x/5.4.x/5.5.x
1.0.0-beta.22-1 (package name: angular-cli) 2.2.x 6.9.x or later minor version 2.0.x 5.0.x/5.1.x/5.2.x/5.3.x/5.4.x/5.5.x
1.0.0-beta.30 2.3.x 6.9.x or later minor version 2.0.x 5.0.x/5.1.x/5.2.x/5.3.x/5.4.x/5.5.x
1.0.0-rc.4 2.4.x 6.9.x or later minor version 2.0.x 5.0.x/5.1.x/5.2.x/5.3.x/5.4.x/5.5.x
1.0.6 4.0.x/4.1.x 6.9.x or later minor version 2.2.x 5.0.x/5.1.x/5.2.x/5.3.x/5.4.x/5.5.x
1.1.3 4.0.x/4.1.x 6.9.x or later minor version 2.3.x 5.0.x/5.1.x/5.2.x/5.3.x/5.4.x/5.5.x
1.2.7 4.0.x/4.1.x 6.9.x or later minor version 2.3.x 5.0.x/5.1.x/5.2.x/5.3.x/5.4.x/5.5.x
1.3.2 4.2.x/4.3.x/4.4.x 6.9.x or later minor version 2.4.x 5.0.x/5.1.x/5.2.x/5.3.x/5.4.x/5.5.x
@cfernandomaciel
cfernandomaciel / angular-cli-node-js-typescript-compatiblity-matrix.csv
Created March 16, 2021 17:14
Angular CLI compatibility with NodeJS table #angular #angular-cli #node-js
Angular CLI version Angular version Node.js version TypeScript version
- 2.x 6.0.x or later minor version 2.0.x
1.0.6 4.0.x/4.1.x 6.9.x or later minor version 2.2.x
1.1.3 4.0.x/4.1.x 6.9.x or later minor version 2.3.x
1.2.7 4.0.x/4.1.x 6.9.x or later minor version 2.3.x
1.3.2 4.2.x/4.3.x/4.4.x 6.9.x or later minor version 2.4.x
1.4.10 4.2.x/4.3.x/4.4.x 6.9.x/8.9.x or later minor version 2.4.x
1.5.6 5.0.x/5.1.x 6.9.x/8.9.x or later minor version 2.4.x/2.5.x
1.6.7 5.2.x 6.9.x/8.9.x or later minor version 2.5.x
1.7.4 5.2.x 6.9.x/8.9.x or later minor version 2.5.x
@cfernandomaciel
cfernandomaciel / server.js
Created August 14, 2019 20:29
Simple Server with port 15000
const http = require('http')
const portscanner = require('portscanner');
//const port = process.env.PORT;
const requestHandler = (request, response) => {
console.log(request.url)
response.end('Hello Node.js Server!')
}
const Request = require('request-promise');
const NODE_NAME = 'socket-binance-apps';
const NODE_ADDRESS = '127.0.0.1';
const SERVICE_NAME = 'binance-BTCLTC';
const SERVICE_ID = require('uuid').v4();
const url = 'http://127.0.0.1:8500/v1/';