Recherche…


Hello World dans le navigateur avec SystemJS

Installer systemjs et plugin-typecript

npm install systemjs
npm install plugin-typescript

NOTE: ceci installera le compilateur typecript 2.0.0 qui n’est pas encore sorti.

Pour TypeScript 1.8, vous devez utiliser le plugin-typescript 4.0.16

Créer hello.ts fichier hello.ts

export function greeter(person: String) {
    return 'Hello, ' + person;
}

Créer hello.html fichier 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>

Créer config.js - Fichier de configuration 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'
    }
});

REMARQUE: si vous ne voulez pas vérifier le type, supprimez loader: "plugin-typescript" et typescriptOptions de config.js . Notez également qu'il ne vérifiera jamais le code JavaScript, en particulier le code de la <script> dans l'exemple html.

Essaye-le

npm install live-server
./node_modules/.bin/live-server --open=hello.html

Construis-le pour la production

npm install systemjs-builder

Créez le fichier 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});
});

compiler hello.js depuis hello.ts

node build.js

Utilisez-le en production

Chargez simplement hello.js avec une balise script avant la première utilisation

Fichier 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>


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow