TypeScript
TypeScript con SystemJS
Ricerca…
Hello World nel browser con SystemJS
Installa systemjs e plugin-typescript
npm install systemjs
npm install plugin-typescript
NOTA: questo installerà il compilatore typescript 2.0.0 che non è ancora stato rilasciato.
Per TypeScript 1.8 devi usare plug-typescript 4.0.16
Crea hello.ts
file hello.ts
export function greeter(person: String) {
return 'Hello, ' + person;
}
Crea hello.html
file hello.html
<!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>
Crea config.js
- File di configurazione SystemJS
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'
}
});
NOTA: se non si desidera verificare il tipo, rimuovere loader: "plugin-typescript"
e typescriptOptions
da config.js
. Nota inoltre che non controllerà mai il codice javascript, in particolare il codice nel tag <script>
nell'esempio html.
Provalo
npm install live-server
./node_modules/.bin/live-server --open=hello.html
Costruiscilo per la produzione
npm install systemjs-builder
Crea il file build.js
:
var Builder = require('systemjs-builder');
var builder = new Builder();
builder.loadConfig('./config.js').then(function() {
builder.bundle('./hello.ts', './hello.js', {minify: true});
});
crea hello.js da hello.ts
node build.js
Usalo in produzione
Basta caricare hello.js con un tag script prima del primo utilizzo
hello-production.html
file:
<!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
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow