Sök…


Hej värld i webbläsaren med SystemJS

Installera systemjs och plugin-typskript

npm install systemjs
npm install plugin-typescript

OBS: detta kommer att installera typskript 2.0.0-kompilator som inte har släppts ännu.

För TypeScript 1.8 måste du använda plugin-typ 4.0.16

Skapa hello.ts fil

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

Skapa hello.html fil

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

Skapa config.js - SystemJS-konfigurationsfil

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'
    }
});

OBS: om du inte vill ha typkontroll, ta bort loader: "plugin-typescript" och typescriptOptions från config.js . Observera också att den aldrig kommer att kontrollera javascript-kod, särskilt kod i <script> -taggen i html-exempel.

Testa det

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

Bygg det för produktion

npm install systemjs-builder

Skapa build.js fil:

var Builder = require('systemjs-builder');
var builder = new Builder();
builder.loadConfig('./config.js').then(function() {
    builder.bundle('./hello.ts', './hello.js', {minify: true});
});

bygg hello.js från hello.ts

node build.js

Använd den i produktionen

Ladda bara hello.js med ett skripttagg innan du använder det första gången

hello-production.html fil:

<!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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow