Skip to content

Instantly share code, notes, and snippets.

@AshleyGrant
Last active April 26, 2017 09:01
Show Gist options
  • Save AshleyGrant/9ee269b9ef47f56b8658a06e679adc21 to your computer and use it in GitHub Desktop.
Save AshleyGrant/9ee269b9ef47f56b8658a06e679adc21 to your computer and use it in GitHub Desktop.
Aurelia Gist
<template>
Hello world
</template>
export class App {
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<script src="https://jdanyow.github.io/rjs-bundle/node_modules/requirejs/require.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/config.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/aurelia.js"></script>
<script src="https://jdanyow.github.io/rjs-bundle/bundles/babel.js"></script>
<script>
require(['aurelia-bootstrapper']);
</script>
</body>
</html>
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging();
aurelia.start().then(() => aurelia.setRoot());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment