TypeScript
TypeScript met SystemJS
Zoeken…
Hallo wereld in de browser met SystemJS
Installeer systemjs en plugin-typescript
npm install systemjs
npm install plugin-typescript
OPMERKING: hiermee wordt de typescript 2.0.0-compiler geïnstalleerd die nog niet is uitgebracht.
Voor TypeScript 1.8 moet u plug-incript 4.0.16 gebruiken
Maak een hello.ts
bestand
export function greeter(person: String) {
return 'Hello, ' + person;
}
Maak een hello.html
bestand
<!doctype html>
<html>
<head>
<title>Hello World in TypeScript</title>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="config.js"></script>
<script>
window.addEventListener('load', function() {
System.import('./hello.ts').then(function(hello) {
document.body.innerHTML = hello.greeter('World');
});
});
</script>
</head>
<body>
</body>
</html>
Maak config.js
- SystemJS configuratiebestand
System.config({
packages: {
"plugin-typescript": {
"main": "plugin.js"
},
"typescript": {
"main": "lib/typescript.js",
"meta": {
"lib/typescript.js": {
"exports": "ts"
}
}
}
},
map: {
"plugin-typescript": "node_modules/plugin-typescript/lib/",
/* NOTE: this is for npm 3 (node 6) */
/* for npm 2, typescript path will be */
/* node_modules/plugin-typescript/node_modules/typescript */
"typescript": "node_modules/typescript/"
},
transpiler: "plugin-typescript",
meta: {
"./hello.ts": {
format: "esm",
loader: "plugin-typescript"
}
},
typescriptOptions: {
typeCheck: 'strict'
}
});
OPMERKING: als u geen typecontrole wilt, verwijdert u loader: "plugin-typescript"
en typescriptOptions
uit config.js
. Merk ook op dat het nooit JavaScript-code zal controleren, in het bijzonder code in de <script>
-tag in het HTML-voorbeeld.
Test het
npm install live-server
./node_modules/.bin/live-server --open=hello.html
Bouw het voor productie
npm install systemjs-builder
Maak build.js
bestand:
var Builder = require('systemjs-builder');
var builder = new Builder();
builder.loadConfig('./config.js').then(function() {
builder.bundle('./hello.ts', './hello.js', {minify: true});
});
build hello.js van hello.ts
node build.js
Gebruik het in productie
Laad hello.js voor het eerste gebruik met een script-tag
hello-production.html
bestand:
<!doctype html>
<html>
<head>
<title>Hello World in TypeScript</title>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="config.js"></script>
<script src="hello.js"></script>
<script>
window.addEventListener('load', function() {
System.import('./hello.ts').then(function(hello) {
document.body.innerHTML = hello.greeter('World');
});
});
</script>
</head>
<body>
</body>
</html>
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow