Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Configure Aurelia Project using Visual Studio

Tags:

aurelia

I know it's very new, but I'd like to create a prototype using aurelia with Visual Studio. VS support is in the hopper, but the current documentation is based on node.js et al. Based on the existing documentation, I haven't a clue. I'm hoping I can get some guidance...

like image 545
dudeNumber4 Avatar asked Jan 28 '15 19:01

dudeNumber4


People also ask

How do I create Aurelia project?

Creating A New Aurelia Project To create the project, run au new from the command line. You will be presented with a number of options. Name the project "todo" and then select either the "Default ESNext" or "Default TypeScript" option depending on what is most comfortable for you.

How do I run Aurelia?

Running Your Aurelia AppFrom inside your project folder, simply execute au run . This will build your app, creating all bundles in the process. It will start a minimal web server and serve your application. The dev web server by default auto-refreshes your browser when source code changes.


2 Answers

Not sure this is what you are looking for, but you can check out this github Aurelia project, using Typescript and VS 2013. It still makes use of gulp and jspm but with the VS Taskrunner extension.

https://github.com/AshleyGrant/aspnet-skeleton-navigation

There is now a default project supporting VS 2015: https://github.com/aurelia/skeleton-navigation

like image 81
Gene Reddick Avatar answered Oct 09 '22 10:10

Gene Reddick


There are several sample Aurelia Visual Studio solutions contained here: aurelia typescript samples

These samples use a javascript bundle (also created as part of the repo), so no gulp is needed.

Warning - these are samples and are not polished.

like image 20
Mike Graham Avatar answered Oct 09 '22 09:10

Mike Graham