Skip to main content

TypeScript: Notes

Typed JavaScript at Any Scale - TypeScript extends JavaScript by adding types.

Install TypeScript

PS D:\projects\lthwts> npm install -g typescript
D:\nodejs\tsc -> D:\nodejs\node_modules\typescript\bin\tsc
D:\nodejs\tsserver -> D:\nodejs\node_modules\typescript\bin\tsserver
+ typescript@3.8.3
added 1 package from 1 contributor in 4.843s

PS D:\projects\lthwts> tsc --version
Version 3.8.3
PS D:\projects\lthwts>

Update TypeScript

PS D:\projects\lthwts> npm install -g typescript
D:\nodejs\tsc -> D:\nodejs\node_modules\typescript\bin\tsc
D:\nodejs\tsserver -> D:\nodejs\node_modules\typescript\bin\tsserver
+ typescript@4.5.4
updated 1 package in 67.965s
PS D:\projects\lthwts> tsc --version
Version 4.5.4
PS D:\projects\lthwts>
Hello Work TypeScript with Microsoft Visual Code

Free courses to learn TypeScript

Popular posts from this blog

Tiếng Nhật: 7 ngày trong tuần

Tìm thấy món quà xinh xắn mà một đồng nghiệp đã tặng trong dịp đi Nhật tham gia khóa học quản lý dự án. Desk Calendar in Japanese Thử một mục tiêu nhỏ để luyện tập não và cách gõ tiếng Nhật trên máy tính. Dưới đây là bảy ngày trong tuần, bắt đầu từ Chủ Nhật, đến thứ hai,... và cuối cùng là thứ bảy (Nhựt, Nguyệt, Hỏa, Thủy, Mộc, Kim, Thổ). 日曜日 にちようび 月曜日 げつようび 火曜日 かようび 水曜日 すいようび 木曜日 もくようび 金曜日 きんようび 土曜日 どようび  [Nguồn tham khảo] http://www.cjvlang.com/Dow/dowjpn.html Cám ơn bạn đã đọc!

IBM Domino: Enable SMTPClientDebug, SMTPDebug

Add parameters to NOTES.ini SMTPClientDebug=1 SMTPDebug=2 Option 1: Add parameters via GUI IBM Domino: Enable SMTPDebug in NOTES.ini Option 2: Add parameters via command SET CONFIG "SMTPClientDebug=1" update Run command to update router configuration tell router update config IBM Domino: tell router update config to update configuration and reload routing table Send an email to @gmail.com to check result IBM Domino: Log file after enabling SMTPClientDebug parameter in NOTES.ini file

Linux command: printenv

printenv - print all or part of environment NAME        printenv - print all or part of environment SYNOPSIS        printenv [OPTION]... [VARIABLE]... DESCRIPTION        Print  the  values  of the specified environment VARIABLE(s).  If no VARIABLE is speci‐        fied, print name and value pairs for them all.        -0, --null               end each output line with NUL, not newline        --help display this help and exit        --version               output version information and exit        NOTE: your shell may have its own version of printenv,  which  usually  supersedes  the        version  described  here.  Please refer to your shell's documentation for d...