一、安装环境与配置

1、命令行安装

npm i -g typescript

2、快捷打开Vs Code编辑器

创建一个项目文件夹,在该文件夹下打开命令行工具,使用code .命令快速打开编辑器(如果计算机提示没有这个命令,请查找到编辑器安装目录bin文件夹下,复制地址。到系统的环境变量下Path,编辑,在前面加上;,粘贴进去就好了)。

3、运行typesript以及同步typesript与js转换

我们在项目文件夹下创建一个名叫demo1.ts文件。这就是我们学习typesript的起点,要记住typesript需要转换成js文件才可以被浏览器识别,所以需要运行命令:

tsc demo1.ts

这样就会在文件夹下生成一个名叫demo1.js文件。是不是感觉每次写完都要运行命令很烦,所以我们推荐使用Vs code编辑器,让你每次编写ts的时候都会同步编译成js文件。教程如下:
在项目文件夹下运行命令:

tsc --init

项目文件夹下,会生成一个tsconfig.json文件。取消注释 "outDir": "./js",,这就是输出js文件所要存放的地址,这里我改写了在项目文件夹下的js文件夹

{"compilerOptions": {/* Basic Options */// "incremental": true,                   /* Enable incremental compilation */"target": "es5",                          /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */"module": "commonjs",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */// "lib": [],                             /* Specify library files to be included in the compilation. */// "allowJs": true,                       /* Allow javascript files to be compiled. */// "checkJs": true,                       /* Report errors in .js files. */// "jsx": "preserve",                     /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */// "declaration": true,                   /* Generates corresponding '.d.ts' file. */// "declarationMap": true,                /* Generates a sourcemap for each corresponding '.d.ts' file. */// "sourceMap": true,                     /* Generates corresponding '.map' file. */// "outFile": "./",                       /* Concatenate and emit output to single file. */"outDir": "./js",                        /* Redirect output structure to the directory. */// "rootDir": "./",                       /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */// "composite": true,                     /* Enable project compilation */// "tsBuildInfoFile": "./",               /* Specify file to store incremental compilation information */// "removeComments": true,                /* Do not emit comments to output. */// "noEmit": true,                        /* Do not emit outputs. */// "importHelpers": true,                 /* Import emit helpers from 'tslib'. */// "downlevelIteration": true,            /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */// "isolatedModules": true,               /* Transpile each file as a separate module (similar to 'ts.transpileModule'). *//* Strict Type-Checking Options */"strict": true,                           /* Enable all strict type-checking options. */// "noImplicitAny": true,                 /* Raise error on expressions and declarations with an implied 'any' type. */// "strictNullChecks": true,              /* Enable strict null checks. */// "strictFunctionTypes": true,           /* Enable strict checking of function types. */// "strictBindCallApply": true,           /* Enable strict 'bind', 'call', and 'apply' methods on functions. */// "strictPropertyInitialization": true,  /* Enable strict checking of property initialization in classes. */// "noImplicitThis": true,                /* Raise error on 'this' expressions with an implied 'any' type. */// "alwaysStrict": true,                  /* Parse in strict mode and emit "use strict" for each source file. *//* Additional Checks */// "noUnusedLocals": true,                /* Report errors on unused locals. */// "noUnusedParameters": true,            /* Report errors on unused parameters. */// "noImplicitReturns": true,             /* Report error when not all code paths in function return a value. */// "noFallthroughCasesInSwitch": true,    /* Report errors for fallthrough cases in switch statement. *//* Module Resolution Options */// "moduleResolution": "node",            /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */// "baseUrl": "./",                       /* Base directory to resolve non-absolute module names. */// "paths": {},                           /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */// "rootDirs": [],                        /* List of root folders whose combined content represents the structure of the project at runtime. */// "typeRoots": [],                       /* List of folders to include type definitions from. */// "types": [],                           /* Type declaration files to be included in compilation. */// "allowSyntheticDefaultImports": true,  /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */"esModuleInterop": true,                  /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */// "preserveSymlinks": true,              /* Do not resolve the real path of symlinks. */// "allowUmdGlobalAccess": true,          /* Allow accessing UMD globals from modules. *//* Source Map Options */// "sourceRoot": "",                      /* Specify the location where debugger should locate TypeScript files instead of source locations. */// "mapRoot": "",                         /* Specify the location where debugger should locate map files instead of generated locations. */// "inlineSourceMap": true,               /* Emit a single file with source maps instead of having a separate file. */// "inlineSources": true,                 /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. *//* Experimental Options */// "experimentalDecorators": true,        /* Enables experimental support for ES7 decorators. */// "emitDecoratorMetadata": true,         /* Enables experimental support for emitting type metadata for decorators. *//* Advanced Options */"forceConsistentCasingInFileNames": true  /* Disallow inconsistently-cased references to the same file. */}
}

然后,在vs code编辑器上方的终端选项找到运行任务选项,点击它。有两个选项:
选择 tsc:监视-tsconfig.json。就OK了。

4、安装编辑器支持Typescript插件

这里推荐Vs code的插件: TypeScript Hero

二、学习Typescript的数据类型

Typescript一共有10种数据类型。

  • number类型
  • string类型
  • 数组类型
  • 元组类型
  • 枚举类型
  • boolean类型
  • any类型
  • null和undefined
  • void 类型
  • never 类型
// 1、number类型
let num:number=1;
console.log(num); // 1
// 2、string类型
let str:string='str';
console.log(str); // str
// 3、数组类型
let arr:number[]=[1,2,3];
console.log(arr); // [1,2,3]let arr:string[]=['1','2','3'];
console.log(arr); // ['1','2','3']let arr:Array<string>=['1','2','3'];
console.log(arr);
// 4、元组类型
let arrx:[number,string]=[1,'2'];
console.log(arrx);  // [1,'2']
// 5、枚举类型
enum flag {success=1,error=0};
let s:flag=flag.success;
console.log(s); //1enum word {a,b,c};
let msg:word=word.b;
console.log(msg); //1enum word {a,b=2,c};
let msg:word=word.c;
console.log(msg); //3

跟着Vam一起学习Typescript(第一期)(更新中)相关推荐

  1. 【PSCAD学习笔记第一期】建立一个Bergeron Model

    [PSCAD学习笔记第一期]建立一个Bergeron Model Step1-创建一个TLine组件 在想要添加组件的工作区右击,选择Component Wizard 在弹出的界面选择Transmis ...

  2. Go语言开发学习笔记(持续更新中)

    Go语言开发学习笔记(持续更新中) 仅供自我学习 更好的文档请选择下方 https://studygolang.com/pkgdoc https://www.topgoer.com/go%E5%9F% ...

  3. C语言学习笔记Day3——持续更新中... ...

    上一篇文章C语言学习笔记Day2--持续更新中- - 八. 容器 1. 一维数组 1.1 什么是一维数组 当数组中每个元素都只带有一个下标(第一个元素的下标为0, 第二个元素的下标为1, 以此类推)时 ...

  4. Devops系统化,从零开始学习容器技术(更新中)

    文章目录 Devops系统化,从零开始学习Docker.K8s 一.容器技术和Docker简介 1.1 Docker导学 1.2 容器技术概述 二.Docker环境的各种搭建方法 2.1 Docker ...

  5. 【Vue全家桶+SSR+Koa2全栈开发】项目搭建过程 整合 学习目录(持续更新中)

    写在开头 大家好,这里是lionLoveVue,基础知识决定了编程思维,学如逆水行舟,不进则退.金三银四,为了面试也还在慢慢积累知识,Github上面可以直接查看所有前端知识点梳理,github传送门 ...

  6. 【跟着项目学CSS】第一期-闪动LOGO

    最近期末比较忙,没有上CSDN,没有回大家私信[非常对不起]. 进阶版JavaScript下周更新. 今天先浅浅学习一下CSS样式. 22 1.body代码 <body><div c ...

  7. Vue3+TypeScript+Vite 学习笔记(持续更新中)

    文章目录 一.Vue3 基础环境配置 1. 检查当前 node 版本:(`需要 node 在10 及以上`) 2. 安装 vue-cli 脚手架: 3.创建项目: 4. 自定义Eslint 规则: 二 ...

  8. 周末ROS学习沙龙第一期——ROS历史、安装、消息话题节点服务等概念、SLAM导航框架及参数、小车上运行SLAM

    非博主原创,出于方便学习的目的,将周末ROS学习沙龙www.corvin.cn的课堂讲义PPT整理在这(老师讲得超棒!),无任何盈利目的,若有侵权则删除. Ros小课堂链接:https://space ...

  9. 2023年4月行业报告及策划方案PPT分享第一期更新

    今日行业报告分享 154页微软GPT研究报告:人工通用智能的火花,GPT-4的早期实验(中文版) 2023年轻人副业报告 2022新中产户外生活方式报告 2023年中国大学生基金投资调查白皮书 202 ...

  10. 跟着论文代码学习编码第一天:main.py

    根据ESRT和LBNet的代码学习编码.首先看main.py. 1.  args模块  B站小侯学府的args讲解 需要三步,创建argparse.ArgumentParser解释器,添加add_ar ...

最新文章

  1. mysql字段名与关键字冲突(near to:syntax error)
  2. 如何提高PyTorch“炼丹”速度?这位小哥总结了17种方法,可直接上手更改的那种...
  3. css中margin-top/margin-bottom失效
  4. 贝叶斯学习--极大后验概率假设和极大似然假设
  5. photoshop的页面制作练习1
  6. 电脑没有声音一键修复_电脑上有没有好用点的办公提醒小软件?有带声音提醒的桌面便签软件吗...
  7. 计算机无法创建新文件夹,无法创建文件,教您无法新建文件夹怎么办
  8. 回文自动机:从入门到只会打板
  9. equals()与==的区别
  10. mysql 结束符报错_【踩坑记录】MySQL 实现自定义递归函数
  11. Install Google Chrome using Apt-Get in Ubuntu
  12. 阿里云各个地域节点速度测试(测试点到阿里云各站点)
  13. iOS Xcode7上真机调试
  14. Dart云平台-DartPad
  15. git21天打卡day11-删除分支
  16. Ajax异步刷新,测试用户名是否被注册
  17. 数据结构严蔚敏清华大学pdf_2019年清华大学软件学院软件工程考研经验分享
  18. win10记得pin码 重置密码登录
  19. android系统锁屏锁怎么解决方法,安卓手机忘记锁屏密码解决方法【图文详解】...
  20. java size属性_Java中的长度length、length()、size()

热门文章

  1. 代理服务器proxy server
  2. 微信小游戏关系链的使用(排行榜的显示)
  3. C#实现百度地图附近搜索调用JavaScript函数
  4. freeswitch拨打分机号
  5. Can‘t reconnect until invalid transaction is rolled back
  6. Microsoft OneNote - 图片文字提取
  7. MCS51 系列单片机的中央处理器(CPU)
  8. 随机游走模型 matlab,随机游走的matlab实现
  9. windows常用快捷键(截图,录屏,放大镜,虚拟桌面,写字板,资源管理器快捷键)
  10. 【慕课网】JavaScript中函数和this