TypeScript
TypeScript con SystemJS
Buscar..
Hola mundo en el navegador con SystemJS
Instalar systemjs y plugin-typescript
npm install systemjs
npm install plugin-typescript
NOTA: esto instalará el compilador mecanografiado 2.0.0 que aún no se ha publicado.
Para TypeScript 1.8 tienes que usar plugin-typescript 4.0.16
Crear archivo hello.ts
export function greeter(person: String) {
return 'Hello, ' + person;
}
Crear archivo 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>
Crear config.js
- archivo de configuración 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: si no desea la verificación de tipos, elimine el loader: "plugin-typescript"
y typescriptOptions
de config.js
. También tenga en cuenta que nunca verificará el código javascript, en particular el código en la etiqueta <script>
en el ejemplo html.
Pruébalo
npm install live-server
./node_modules/.bin/live-server --open=hello.html
Constrúyelo para la producción.
npm install systemjs-builder
Crear el archivo 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});
});
construir hello.js desde hello.ts
node build.js
Utilízalo en producción.
Simplemente cargue hello.js con una etiqueta de script antes del primer uso
archivo hello-production.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 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>