Configure Aurelia Project using Visual Studio

前端 未结 6 1907
梦谈多话
梦谈多话 2020-12-28 09:19

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

6条回答
  •  青春惊慌失措
    2020-12-28 10:02

    • Download and Install Node.js Then create a Visual Studio project and on the toplevel of that folder execute for>
    • Install Gulp for build automation

    npm install -g gulp

    • Install JSPM as client-side package manager

    npm install -g jspm

    • Install Git for Windows and configure Github

    jspm registry config github

    • Generate a skeleton project by using Yeoman

    npm install -g yo generator-aurelia

    then enter

    yo aurelia

    • Install Plugins needed by gulp

    npm install

    • Install JSPM dependencies of the package manifest

    jspm install -y

    • Gulp Watch to run

    gulp watch

    all from this tutorial> Tutaurelia.net

提交回复
热议问题