Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Meetup Paris TypeScript #special 2018
Search
Sylvain PONTOREAU
July 04, 2018
Programming
0
170
Meetup Paris TypeScript #special 2018
Deno: The death of Node.js?
Sylvain PONTOREAU
July 04, 2018
Tweet
Share
More Decks by Sylvain PONTOREAU
See All by Sylvain PONTOREAU
aMS Lausanne - Préparez-vous à une virée intersidérale avec Azure Cosmos DB 🧑🚀
spontoreau
0
54
TypeScript - 45 minutes pour s’y mettre !
spontoreau
0
140
Event Sourcing avec Azure, quelle base de données choisir
spontoreau
0
83
Decorators in TypeScript 5.0, everything you need to know!
spontoreau
0
480
Leverage your CI/CD at the next level with Github actions
spontoreau
0
62
Commit comme un(e) "Hipster" avec Gitmoji !
spontoreau
0
160
Bird of a Feather - TypeScript (Devoxx 2022)
spontoreau
0
40
GitHub - Du besoin jusqu'à la production avec Github et Azure
spontoreau
0
42
Behavior Driven Development
spontoreau
1
280
Other Decks in Programming
See All in Programming
「やめとこ」がなくなった — 1月にZennを始めて22本書いた AI共創開発のリアル
atani14
0
370
Agentic AI: Evolution oder Revolution
mobilelarson
PRO
0
150
Goの型安全性で実現する複数プロダクトの権限管理
ishikawa_pro
1
140
Ruby and LLM Ecosystem 2nd
koic
1
500
AIとペアプロして処理時間を97%削減した話 #pyconshizu
kashewnuts
1
220
エンジニアの「手元の自動化」を加速するn8n 2026.02.27
symy2co
0
130
CSC307 Lecture 15
javiergs
PRO
0
240
AI活用のコスパを最大化する方法
ochtum
0
130
Windows on Ryzen and I
seosoft
0
250
最初からAWS CDKで技術検証してもいいんじゃない?
akihisaikeda
4
130
AIに任せる範囲を安全に広げるためにやっていること
fukucheee
0
130
AI駆動開発の本音 〜Claude Code並列開発で見えたエンジニアの新しい役割〜
hisuzuya
4
500
Featured
See All Featured
Large-scale JavaScript Application Architecture
addyosmani
515
110k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
52
5.9k
Rebuilding a faster, lazier Slack
samanthasiow
85
9.4k
Ruling the World: When Life Gets Gamed
codingconduct
0
170
Automating Front-end Workflow
addyosmani
1370
200k
A Tale of Four Properties
chriscoyier
163
24k
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
3.7k
The Curious Case for Waylosing
cassininazir
0
270
[RailsConf 2023] Rails as a piece of cake
palkan
59
6.4k
Odyssey Design
rkendrick25
PRO
2
540
Hiding What from Whom? A Critical Review of the History of Programming languages for Music
tomoyanonymous
2
540
What’s in a name? Adding method to the madness
productmarketing
PRO
24
4k
Transcript
None
Premier Field Engineer at Trainer TypeScript fanboy!
None
None
None
None
None
None
None
https://github.com/maxmcd/deno-docker
type => void interface string void string null string void
function send(channel: string, ...ab: ArrayBuffer[]): ArrayBuffer[] | null; function poll():
ArrayBuffer[]; function print(x: string): void; https://github.com/ry/deno/blob/golang/msg.proto
function main() { // Setup... while (true) { const messages
= deno.poll(); processMessages(messages); } }
deno.readFileSync(filename: string): ArrayBuffer; deno.writeFileSync(filename: string, data: Uint8Array, perm: number): void;
setTimeout(cb: TimerCallback, delay: number, ...args: any[]): number; setInterval(cb: TimerCallbac, duration: number, ...args: any[]): number; clearTimeout(timerId: number); clearInterval(timerId: number);
declare var any void any void boolean any void string
string string Promise
declare var new string string string declare var new string
string
None
None