/images/avatar.jpg

Node.js:容器中Core Dump

在开始之前,我们先了解下什么是 Core 和 Core Dump。 什么是 Core? 在使用半导体作为内存材料前,人类是利用线圈当作内存的材料,线圈就叫作 core ,用线圈做的内存

Typescript学习

安装 安装TypeScript还是很简单的: 1 npm install -g typescript 写个hello.ts 1 2 3 4 5 6 function sayHello(person: string) { return 'Hello, ' + person; } let user = 'Tom'; console.log(sayHello(user)); 然后执行 1 tsc hello.ts 这时候会生成