xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

Node.js & ES Modules & TypeScript All In One

Node.js & ES Modules & TypeScript All In One

ES Modules

// fix TS throw duplicate declare `test` bug ✅
export {};

const test = (msg: string) => {
  console.log(msg);
};

test('hello TS');

TypeScript types

// ts
const test = (msg: string) => {
  console.log(msg);
};

test('hello TS');

pure js / vanilla javascript ✅

// js
const test = (msg) => {
  console.log(msg);
};

test('hello TS');


refs

node run .ts file OK ???

https://www.imooc.com/video/23203



©xgqfrms 2012-2025

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!


posted @   xgqfrms  阅读(62)  评论(2编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· DeepSeek 开源周回顾「GitHub 热点速览」
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2020-05-21 HTML5 in depth All In One
2020-05-21 html template & script type="text/html"
2020-05-21 iframe & sandbox & 微前端
2020-05-21 how to create a ring progress bar in web skills
2020-05-21 SVG Animation
2020-05-21 WebAssembly in Action
2020-05-21 free online business card generator
点击右上角即可分享
微信分享提示