在Mac OS X Yosemite 10.10.3 中搭建第一个 ASP.NET 5 Web 项目

终于有时间在 Mac 上安装一下 ASP.NET 5,网上有许多教程,但是多数的时间比较早了,版本不是最新,搭着 Build 2015 的春风,我也实践一下 Mac OS X 上的 ASP.NET 5。

经常使用 Windows 8.1,对 Mac 并不太熟悉,也一并把安装中的问题趟一遍。

前几天刚刚更新了 Mac 的操作系统,操作系统版本 Mac OS X Yosemite 10.10.3。

1. 在 Mac OS X 上安装 ASP.NET 5

ASP.NET 5 运行在 DNX 之上,DNX 是 .NET 运行环境 ( .NET Execution Environment ) 的简写,它支持多种平台,当然包括我们今天的 OS X 了,在 OS X 上,使用 Homebrew 可以很容易安装 DNX。

1.1 安装 Hoembrew

什么是 Homebrew? 我们先看看它。

Homebrew 是用来在 Mac OS X 安装 Linux 工具包最简单和灵活的方式。官方网址:http://brew.sh

打开 Mac OS 的终端,输入 ruby 命令

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

就可以了。安装之后可以检查是否安装成功。

brew –v
Homebrew 0.9.5

我现在的版本是 0.9.5

1.2 安装 DNVM

又一个新的缩写词 DNVM,英文的原文是 .NET Version Manager,就是 .NET 版本管理器,包含更新和配置 .NET 运行环境 ( KRE ) 所使用的一系列工具,是 ASP.NET 5 项目的一个子项目。DNVM 的网址:https://github.com/aspnet/dnvm/

一旦成功安装了 Homebrew,就可以使用 brew 命令来安装这个 DNVM。

brew 自己有默认的仓库,使用 tap 可以添加第三方的仓库,我们的 DNVM 就需要设置一下所在的仓库。

在终端窗口中,使用下面的命令来设置这个第三方的仓库。

brew tap aspnet/dnx

如果你想更新一下这个仓库,可以使用下面的命令先删除原来的,再重新安装,实现更新的目的。

brew untap aspnet/dnx
brew tap aspnet/dnx

更新之后,才可以安装我们真正需要的 DNVM。现在,可以安装 .NET 版本管理器了。

在终端中输入下面的命令,安装 DNVM。注意大小写,命令中可是小写的。这将会自动从 https://www.nuget.org/api/v2 安装最新的 DNX 包。

brew install dnvm

终端中的输出如下所示。

成功安装之后,可以在终端窗口中执行 dnvm 命令来检查一下。

dnvm

应该看到如下的输出。

    ___  _  ___   ____  ___
   / _ \/ |/ / | / /  |/  /
  / // /    /| |/ / /|_/ /
 /____/_/|_/ |___/_/  /_/  

.NET Version Manager - Version 1.0.0-beta5-10374
By Microsoft Open Technologies, Inc.

DNVM can be used to download versions of the .NET Execution Environment and manage which version you are using.
You can control the URL of the stable and unstable channel by setting the DNX_FEED and DNX_UNSTABLE_FEED variables.

Current feed settings:
Default Stable: https://www.nuget.org/api/v2
Default Unstable: https://www.myget.org/F/aspnetvnext/api/v2
Current Stable Override: <none>
Current Unstable Override: <none>

Use dnvm [help|-h|-help|--help]  to display help text.

如果你看到的是

-bash: dnvm: command not found

也没有关系,这是因为没有找到 dnvm 这个命令而已,将 dnvm.sh 加入搜索路径就可以,这可以通过下面的命令来实现。

source dnvm.sh

如果需要更新 DNX,那么,可以使用 upgrade 命令。

dnvm upgrade

现在,你的 DNX 就已经成功安装了。使用 dnvm list 可以查看所有的版本。

Active Version              Runtime Arch Location             Alias
------ -------              ------- ---- --------             -----
       1.0.0-beta5-11682    coreclr x64  ~/.dnx/runtimes
  *    1.0.0-beta4          mono         ~/.dnx/runtimes      default
       1.0.0-beta5-11682    mono         ~/.dnx/runtimes

可以切换当前使用的 .NET 版本。

localhost:helloClr $ dnvm alias default 1.0.0-beta5-11682
Updating alias ‘default‘ to ‘dnx-mono.1.0.0-beta5-11682‘

重新显示一下当前的版本。

ocalhost:helloClr $ dnvm list

Active Version              Runtime Arch Location             Alias
------ -------              ------- ---- --------             -----
       1.0.0-beta5-11682    coreclr x64  ~/.dnx/runtimes
  *    1.0.0-beta4          mono         ~/.dnx/runtimes
       1.0.0-beta5-11682    mono         ~/.dnx/runtimes      default

1.3 保存路径

当关闭现在的终端窗口之后,重新打开终端窗口就会发现 dnx 不好用了。这是因为我们使用 source 设置的路径只能在当前的终端窗口中才能使用,如果希望能够保存下来,需要修改配置文件了。

查找一下 dnvm.sh 所在的文件夹。

localhost:~ $ mdfind -name dnvm.sh
/usr/local/Cellar/dnvm/1.0.0-dev/libexec/dnvm.sh

2. 创建控制台程序

环境创建之后,我们一般都会创建一个控制台的 Hello, world 程序来爽一把,程序就不用说了,主要是环境。

在桌面上创建了一个测试使用的文件夹 helloClr。在这里面创建下面的两个文件。

使用你喜欢的编辑器写一个 helloworld.cs 程序,其实与 Windows 下当然是一摸一样了。

using System;
public class Program {
public static void Main() {
        Console.WriteLine("Hello from DNX!");
    }
}

不一样的是需要为我们这个简单的项目,创建一个项目文件,文件名必须是 project.json,是 json 格式呀,不要写错了。在与 helloworld.cs 相同的文件夹下,创建这个 project.json 文件。内容如下。

{
  "dependencies": {
  },
  "frameworks": {
    "dnx451": {},
    "dnxcore50": {
      "dependencies": {
        "System.Console": "4.0.0-beta-22605"
        }      }
   } }

现在已经一切都准备好了,注意当前目录需要在这个文件夹下,在终端窗口中,输入运行的命令就可以了。

dnx . run

没有问题的话,就应该看到输出的 Hello from DNX! 了。

在 Mac OS X 下面,还可以设置一个环境变量 DNX_TRACE 来看看详细的输出。

export DNX_TRACE=1

现在的输出丰富多了。

Information: [DefaultHost]: Project path: /Users/haogj/Desktop/helloClr
Information: [DefaultHost]: Project root: /Users/haogj/Desktop/helloClr
Information: [DefaultHost]: Packages path: /Users/haogj/.dnx/packages
Information: [Breadcrumbs] Breadcrumbs for servicing will not be written because the breadcrumbs folder () does not exist.
Information: [DependencyWalker]: Walking dependency graph for ‘helloClr DNX,Version=v4.5.1‘.
Information: [WalkContext]: Graph walk stage 1 took in 9ms
Information: [DependencyWalker]: Graph walk took 17ms.
Information: [WalkContext]: Populate took 7ms
Information: [DependencyWalker]: Resolved dependencies for helloClr in 26ms
Information: [LoaderContainer]: Load name=helloClr
Information: [ProjectLibraryExportProvider]: GetLibraryExport(helloClr, DNX,Version=v4.5.1, Debug, )
Information: [Microsoft.Framework.Runtime.Roslyn.RoslynProjectReferenceProvider]: GetProjectReference(helloClr, DNX,Version=v4.5.1, Debug, )
Information: [ProjectExportProviderHelper]: Resolving references for ‘helloClr‘
Information: [ProjectExportProviderHelper]: Resolved 4 references for ‘helloClr‘ in 6ms
Information: [RoslynCompiler]: Compiling ‘helloClr‘
Information: [LoaderContainer]: Load name=System.Security.Cryptography.Hashing
Information: [LoaderContainer]: Load name=System.Security.Cryptography.Hashing.Algorithms
Information: [RoslynCompiler]: Compiled ‘helloClr‘ in 373ms
Information: [CompilationContext]: Generating resources for helloClr
Information: [CompilationContext]: Generated resources for helloClr in 3ms
Information: [RoslynProjectReference]: Emitting assembly for helloClr
Warning: PDB generation is not supported on this platform
Information: [RoslynProjectReference]: Emitted helloClr in 827ms
Information: [ProjectAssemblyLoader]: Loaded name=helloClr in 1240ms
Hello from DNX!

查看一下当前目录,可以看到我们熟悉的 helloworld.exe 文件,当然了,它必须使用 dnx 才能执行,可以这样直接执行程序。

dnx helloworld.exe

3. 创建网站程序

激动人心的时刻快到了,但是,我们还需要做一些准备工作。

先确认一下你的 .NET 版本。还记得下面的命令吗?检查默认的版本。

dnvm list

Yeoman 是一个创建项目框架的应用,使用它我们可以创建出网站项目的基本框架。

默认的网站需要很多文件组成,包括样式、脚本、配置等等,在 Mac 下面可没有强大的 Visual Studio,这里需要通过 Yeoman 来搭建基本的网站框架。

yeoman 需要通过 npm 来安装,如果你已经安装过 nodejs ,就已经安装过它了,如果没有,就先安装 nodejs 吧。

由于 npm 服务器在国外,国内使用起来问题较多,淘宝提供了一个国内镜像,保障了安装网络环境的稳定,和源地址10分钟同步一次,没有被收录的包会自动切换到npm官方下载,并添加进镜像库。说明链接地址:http://ju.outofmemory.cn/entry/118659

临时使用淘宝 npm 库,可以使用如下命令

npm --registry https://registry.npm.taobao.org info underscore 

安装了 npm 之后,就可以使用 install 命令来安装 yeoman 了。

sudo npm install -g yo

安装的输出如下。

/usr/local/bin/yo -> /usr/local/lib/node_modules/yo/lib/cli.js

> [email protected]1.4.6 postinstall /usr/local/lib/node_modules/yo
> yodoctor

Yeoman Doctor
Running sanity checks on your system

? Global configuration file is valid
? NODE_PATH matches the npm root
? No .bowerrc file in home directory
? No .yo-rc.json file in home directory

Everything looks all right!
[email protected]1.4.6 /usr/local/lib/node_modules/yo
├── array-uniq@1.0.2
├── [email protected]1.3.5
├── [email protected]1.0.0
├── user[email protected]1.1.1
├── [email protected]1.0.2
├── humanize-string@1.0.1 ([email protected]1.0.0)
├── sort[email protected]1.2.0 ([email protected]2.0.0)
├── yeoman[email protected]1.0.1 ([email protected]1.3.1)
├── [email protected]0.9.0
├── string[email protected]1.0.0 ([email protected]2.0.1)
├── root[email protected]1.0.0 (sudo[email protected]1.2.0, [email protected]1.1.0)
├── cross[email protected]0.2.9 ([email protected]2.6.2)
├── [email protected]1.0.0 (escape-string[email protected]1.0.3, [email protected]2.0.1, [email protected]1.3.1, s[email protected]2.0.1, [email protected]1.0.3)
├── [email protected]0.1.5 ([email protected]2.1.0, [email protected]0.6.2)
├── [email protected]1.0.3 ([email protected]1.1.1, [email protected]2.0.1, [email protected]1.0.3, [email protected]2.0.1, [email protected]0.0.1, [email protected]1.0.0, [email protected]1.1.1)
├── [email protected]3.1.0 (object[email protected]2.0.0, [email protected]1.0.0, [email protected]1.1.1, indent-string@1.2.1)
├── package[email protected]1.1.0 ([email protected]3.0.3)
├── npm[email protected]1.1.1 ([email protected]3.0.3)
├── update[email protected]0.3.2 ([email protected]1.0.0, [email protected]1.0.0, semver-diff@2.0.0)
├── [email protected]2.9.2 ([email protected]1.0.0, [email protected]1.0.1, [email protected]2.0.0, object[email protected]2.0.0, [email protected]1.0.1, [email protected]1.0.0, [email protected]1.2.1, [email protected]2.0.3, [email protected]3.3.0, [email protected]2.1.2)
├── [email protected]1.1.0 ([email protected]2.1.1)
├── yeoman[email protected]1.2.5 (escape-string[email protected]1.0.3, [email protected]2.0.0, [email protected]1.0.2, diff@1.4.0, [email protected]0.2.0, [email protected]2.2.0, [email protected]1.1.0, [email protected]1.2.0, [email protected]0.3.0)
├── [email protected]0.3.2 (object[email protected]2.0.0, [email protected]1.0.1, [email protected]0.1.0, [email protected]3.0.6, [email protected]2.0.1, [email protected]0.5.0, [email protected]3.3.0)
├── [email protected]0.5.3 (object[email protected]2.0.0, [email protected]3.0.3, [email protected]1.0.3, [email protected]0.12.1, [email protected]2.55.0)
├── [email protected]3.8.0
├── yeoman[email protected]1.3.2 (object[email protected]1.0.0, [email protected]1.0.2, [email protected]1.1.1, [email protected]0.7.2)
└── [email protected]0.8.3 ([email protected]1.1.1, [email protected]1.0.1, [email protected]2.3.7, [email protected]0.1.1, [email protected]2.5.2)

安装 yeoman 之后,还需要安装 aspnet 的模版库。使用下面的命令

sudo npm install -g yo generator-aspnet

输出如下内容。

/usr/local/bin/yo -> /usr/local/lib/node_modules/yo/lib/cli.js

> [email protected]1.4.6 postinstall /usr/local/lib/node_modules/yo
> yodoctor

Yeoman Doctor
Running sanity checks on your system

? Global configuration file is valid
? NODE_PATH matches the npm root
? No .bowerrc file in home directory
? No .yo-rc.json file in home directory

Everything looks all right!
[email protected]1.4.6 /usr/local/lib/node_modules/yo
├── [email protected]1.0.0
├── array-uniq@1.0.2
├── [email protected]1.3.5
├── user[email protected]1.1.1
├── [email protected]1.0.2
├── humanize-string@1.0.1 ([email protected]1.0.0)
├── sort[email protected]1.2.0 ([email protected]2.0.0)
├── yeoman[email protected]1.0.1 ([email protected]1.3.1)
├── [email protected]0.9.0
├── string[email protected]1.0.0 ([email protected]2.0.1)
├── cross[email protected]0.2.9 ([email protected]2.6.2)
├── [email protected]1.0.0 (escape-string[email protected]1.0.3, [email protected]2.0.1, [email protected]1.3.1, [email protected]2.0.1, [email protected]1.0.3)
├── root[email protected]1.0.0 (sudo[email protected]1.2.0, [email protected]1.1.0)
├── [email protected]0.1.5 ([email protected]2.1.0, [email protected]0.6.2)
├── [email protected]1.0.3 ([email protected]1.1.1, [email protected]2.0.1, [email protected]1.0.3, [email protected]2.0.1, [email protected]0.0.1, [email protected]1.0.0, [email protected]1.1.1)
├── [email protected]3.1.0 (object[email protected]2.0.0, [email protected]1.0.0, [email protected]1.1.1, indent-string@1.2.1)
├── npm[email protected]1.1.1 ([email protected]3.0.3)
├── package[email protected]1.1.0 ([email protected]3.0.3)
├── update[email protected]0.3.2 ([email protected]1.0.0, [email protected]1.0.0, semver-diff@2.0.0)
├── [email protected]2.9.2 ([email protected]1.0.0, [email protected]1.0.1, [email protected]2.0.0, object[email protected]2.0.0, [email protected]1.0.1, [email protected]1.0.0, [email protected]1.2.1, [email protected]2.0.3, [email protected]2.1.2, [email protected]3.3.0)
├── [email protected]1.1.0 ([email protected]2.1.1)
├── [email protected]0.3.2 (object[email protected]2.0.0, [email protected]1.0.1, [email protected]0.1.0, [email protected]3.0.6, [email protected]2.0.1, [email protected]0.5.0, [email protected]3.3.0)
├── yeoman[email protected]1.2.5 ([email protected]2.0.0, [email protected]1.0.2, escape-string[email protected]1.0.3, diff@1.4.0, [email protected]0.2.0, [email protected]2.2.0, [email protected]1.1.0, [email protected]1.2.0, [email protected]0.3.0)
├── [email protected]0.5.3 (object[email protected]2.0.0, [email protected]3.0.3, [email protected]1.0.3, [email protected]0.12.1, [email protected]2.55.0)
├── [email protected]3.8.0
├── yeoman[email protected]1.3.2 (object[email protected]1.0.0, [email protected]1.0.2, [email protected]1.1.1, [email protected]0.7.2)
└── [email protected]0.8.3 ([email protected]1.1.1, [email protected]1.0.1, [email protected]2.3.7, [email protected]0.1.1, [email protected]2.5.2)

generator[email protected]0.0.34 /usr/local/lib/node_modules/generator-aspnet
├── [email protected]2.0.1
├── [email protected]1.0.0 (escape-string[email protected]1.0.3, [email protected]2.0.1, [email protected]1.3.1, [email protected]2.0.1, [email protected]1.0.3)
├── [email protected]1.0.3 (string[email protected]1.0.0, [email protected]1.0.3, [email protected]2.0.1, [email protected]1.1.1, [email protected]2.0.1, [email protected]0.0.1, [email protected]1.0.0, [email protected]1.1.1)
├── [email protected]1.10.0 ([email protected]1.0.0, [email protected]0.1.3)
└── yeoman[email protected]0.19.2 ([email protected]1.0.1, [email protected]1.0.0, [email protected]4.0.0, [email protected]1.0.1, [email protected]1.0.1, [email protected]1.1.1, diff@1.4.0, [email protected]0.2.0, [email protected]1.3.4, [email protected]0.9.0, [email protected]1.0.2, [email protected]3.0.1, [email protected]2.2.0, [email protected]0.1.0, [email protected]0.2.9, [email protected]1.2.3, [email protected]0.5.0, [email protected]0.4.0, [email protected]0.6.5, [email protected]0.3.1, [email protected]1.0.4, [email protected]1.0.11, underscore.string@3.0.3, [email protected]5.0.5, [email protected]1.1.1, findup-sync@0.2.1, [email protected]2.3.3, [email protected]0.1.1, [email protected]1.0.0, [email protected]1.1.0, [email protected]1.2.5, [email protected]1.14.1, [email protected]1.0.0, [email protected]3.8.0, [email protected]4.1.2, [email protected]0.8.3)

安装好生成器之后,我们终于可以创建一个网站项目了。直接在命令行输入 yo 或者直接输入 yo aspnet 就可以了。有向导的呀。

? ‘Allo OpenXLive! What would you like to do? Aspnet

Make sure you are in the directory you want to scaffold into.
This generator can also be run with: yo aspnet

     _-----_
    |       |    .--------------------------.
    |--(o)--|    |      Welcome to the      |
   `---------´   |   marvellous ASP.NET 5   |
    ( _´U`_ )    |        generator!        |
    /___A___\    ‘--------------------------‘
     |  ~  |
   __‘.___.‘__
 ´   `  |° ´ Y ` 

? What type of application do you want to create? Web Application
? What‘s the name of your ASP.NET application? WebApplication
   create WebApplication/.gitgnore
   create WebApplication/Startup.cs
   create WebApplication/bower.json
   create WebApplication/config.json
   create WebApplication/MessageService.cs
   create WebApplication/project.json
   create WebApplication/package.json
   create WebApplication/gruntfile.js
   create WebApplication/Models/AccountViewModels.cs
   create WebApplication/Models/IdentityModels.cs
   create WebApplication/Models/ManageViewModels.cs
   create WebApplication/Controllers/AccountController.cs
   create WebApplication/Controllers/HomeController.cs
   create WebApplication/Controllers/ManageController.cs
   create WebApplication/Compiler/Preprocess/RazorPreCompilation.cs
   create WebApplication/Migrations/000000000000000_CreateIdentitySchema.cs
   create WebApplication/Migrations/ApplicationDbContextModelSnapshot.cs
   create WebApplication/Properties/AppSettings.cs
   create WebApplication/Views/Account/ConfirmEmail.cshtml
   create WebApplication/Views/Account/ExternalLoginConfirmation.cshtml
   create WebApplication/Views/Account/ExternalLoginFailure.cshtml
   create WebApplication/Views/Account/ForgotPassword.cshtml
   create WebApplication/Views/Account/ForgotPasswordConfirmation.cshtml
   create WebApplication/Views/Account/Login.cshtml
   create WebApplication/Views/Account/Register.cshtml
   create WebApplication/Views/Account/ResetPassword.cshtml
   create WebApplication/Views/Account/ResetPasswordConfirmation.cshtml
   create WebApplication/Views/Account/SendCode.cshtml
   create WebApplication/Views/Account/VerifyCode.cshtml
   create WebApplication/Views/Home/Contact.cshtml
   create WebApplication/Views/Home/About.cshtml
   create WebApplication/Views/Home/Index.cshtml
   create WebApplication/Views/Manage/AddPhoneNumber.cshtml
   create WebApplication/Views/Manage/ChangePassword.cshtml
   create WebApplication/Views/Manage/Index.cshtml
   create WebApplication/Views/Manage/ManageLogins.cshtml
   create WebApplication/Views/Manage/RemoveLogin.cshtml
   create WebApplication/Views/Manage/SetPassword.cshtml
   create WebApplication/Views/Manage/VerifyPhoneNumber.cshtml
   create WebApplication/Views/Shared/Error.cshtml
   create WebApplication/Views/Shared/_Layout.cshtml
   create WebApplication/Views/Shared/_LoginPartial.cshtml
   create WebApplication/Views/Shared/_ValidationScriptsPartial.cshtml
   create WebApplication/Views/_GlobalImport.cshtml
   create WebApplication/Views/_ViewStart.cshtml
   create WebApplication/wwwroot/_references.js
   create WebApplication/wwwroot/css/site.css
   create WebApplication/wwwroot/favicon.ico
   create WebApplication/wwwroot/images/ASP-NET-Banners-01.png
   create WebApplication/wwwroot/images/ASP-NET-Banners-02.png
   create WebApplication/wwwroot/images/Banner-01-Azure.png
   create WebApplication/wwwroot/images/Banner-02-VS.png
   create WebApplication/wwwroot/lib/bootstrap-touch-carousel/css/bootstrap-touch-carousel.css
   create WebApplication/wwwroot/lib/bootstrap-touch-carousel/js/bootstrap-touch-carousel.js
   create WebApplication/wwwroot/lib/bootstrap/css/bootstrap-theme.css
   create WebApplication/wwwroot/lib/bootstrap/css/bootstrap-theme.min.css
   create WebApplication/wwwroot/lib/bootstrap/css/bootstrap.css
   create WebApplication/wwwroot/lib/bootstrap/css/bootstrap.min.css
   create WebApplication/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot
   create WebApplication/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg
   create WebApplication/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf
   create WebApplication/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff
   create WebApplication/wwwroot/lib/bootstrap/js/bootstrap.js
   create WebApplication/wwwroot/lib/bootstrap/js/bootstrap.min.js
   create WebApplication/wwwroot/lib/hammer.js/hammer.js
   create WebApplication/wwwroot/lib/hammer.js/hammer.min.js
   create WebApplication/wwwroot/lib/hammer.js/hammer.min.map
   create WebApplication/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
   create WebApplication/wwwroot/lib/jquery-validation/jquery.validate.js
   create WebApplication/wwwroot/lib/jquery/jquery-migrate.js
   create WebApplication/wwwroot/lib/jquery/jquery-migrate.min.js
   create WebApplication/wwwroot/lib/jquery/jquery.js
   create WebApplication/wwwroot/lib/jquery/jquery.min.js
   create WebApplication/wwwroot/lib/jquery/jquery.min.map

Your project is now created, you can use the following commands to get going
    dnu restore
    dnu build
    dnx . run for console projects
    dnx . kestrel or dnx . web for web projects

     _-----_
    |       |    .----------------------.
    |--(o)--|    |     Bye from us!     |
   `---------´   |      Chat soon.      |
    ( _´U`_ )    |      Yeoman team     |
    /___A___\    |   http://yeoman.io   |
     |  ~  |     ‘----------------------‘
   __‘.___.‘__
 ´   `  |° ´ Y ` 

太麻烦了?看看动画吧。

资料来源:http://blogs.msdn.com/b/webdev/archive/2014/12/17/yeoman-generators-for-asp-net-vnext.aspx

在输出的最后,已经说明我们需要的工作。执行 dnu restore, 但是,报错了。

Restoring packages for /Users/Openxlive/Desktop/helloWeb/WebApplication/project.json
Writing lock file /Users/Openxlive/Desktop/helloWeb/WebApplication/project.lock.json
npm WARN package.json [email protected]0.0.0 No description
npm WARN package.json [email protected]0.0.0 No repository field.
npm WARN package.json [email protected]0.0.0 No README data
[email protected]0.4.5 node_modules/grunt
├── which@1.0.9
├── [email protected]1.0.2-1.2.3
├── [email protected]0.4.14
├── [email protected]0.1.0
├── [email protected]2.2.8
├── [email protected]0.6.2
├── [email protected]0.1.22
├── [email protected]0.2.3
├── grunt[email protected]0.2.0
├── [email protected]0.1.2
├── [email protected]1.0.10 ([email protected]1.0.5)
├── [email protected]0.9.2
├── [email protected]0.2.14 ([email protected]1.0.0, [email protected]2.6.2)
├── [email protected]3.1.21 ([email protected]1.0.0, [email protected]1.2.3)
├── coffee[email protected]1.3.3
├── underscore.string@2.2.1
├── iconv[email protected]0.2.11
├── findup-sync@0.1.3 ([email protected]3.2.11, [email protected]2.4.2)
├── grunt[email protected]0.1.1 (underscore.string@2.3.3, [email protected]2.4.2)
└── js[email protected]2.0.5 ([email protected]1.0.4, [email protected]0.1.16)

grunt[email protected]0.4.0 node_modules/grunt-bower-task
├── [email protected]0.6.2
├── [email protected]0.1.22
├── [email protected]1.4.4
├── [email protected]2.0.3 ([email protected]1.1.14)
├── [email protected]0.10.0
└── [email protected]1.3.12 ([email protected]1.0.0, [email protected]1.0.1, stringify-object@1.0.1, which@1.0.9, [email protected]1.0.5, [email protected]0.1.0, [email protected]0.1.0, [email protected]0.0.2, [email protected]1.0.2, [email protected]2.2.8, [email protected]0.2.2, [email protected]0.2.2, [email protected]3.0.6, lockfile@1.0.0, [email protected]2.5.2, [email protected]3.0.1, [email protected]0.6.0, [email protected]0.0.23, [email protected]1.0.1, [email protected]0.3.0, [email protected]1.4.3, [email protected]0.5.0, [email protected]2.3.2, [email protected]0.4.0, [email protected]1.0.6, [email protected]0.1.0, [email protected]0.5.0, [email protected]0.2.0, [email protected]0.5.2, [email protected]1.0.2, tar[email protected]0.5.2, decompress-zip@0.0.8, [email protected]2.42.0, [email protected]4.0.6, [email protected]0.2.4, [email protected]0.4.0, [email protected]0.9.1, [email protected]0.7.1, [email protected]0.4.3, [email protected]2.0.0, [email protected]0.2.0)
----------
System.ComponentModel.Win32Exception: ApplicationName=‘bower‘, CommandLine=‘install‘, CurrentDirectory=‘/Users/Openxlive/Desktop/helloWeb/WebApplication‘, Native error= Cannot find the specified file
  at System.Diagnostics.Process.Start_noshell (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0
  at System.Diagnostics.Process.Start_common (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0
  at System.Diagnostics.Process.Start (System.Diagnostics.ProcessStartInfo startInfo) [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.ScriptExecutor.Execute (Microsoft.Framework.Runtime.Project project, System.String scriptName, System.Func`2 getVariable) [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreCommand+<RestoreForProject>d__69.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter`1[System.Boolean].GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreCommand+<>c__DisplayClass68_0+<<ExecuteCommand>b__0>d.MoveNext () [0x00000] in <filename unknown>:0
--- End of stack trace from previous location where exception was thrown ---
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd (System.Threading.Tasks.Task task) [0x00000] in <filename unknown>:0
  at System.Runtime.CompilerServices.TaskAwaiter.GetResult () [0x00000] in <filename unknown>:0
  at Microsoft.Framework.PackageManager.RestoreCommand+<ExecuteCommand>d__68.MoveNext () [0x00000] in <filename unknown>:0
----------
Restore failed
ApplicationName=‘bower‘, CommandLine=‘install‘, CurrentDirectory=‘/Users/Openxlive/Desktop/helloWeb/WebApplication‘, Native error= Cannot find the specified file

看样子是少了一个 bower 组件,重新安装一下吧。

sudo npm install -g bower

输出如下:

/usr/local/bin/bower -> /usr/local/lib/node_modules/bower/bin/bower
[email protected]1.4.1 /usr/local/lib/node_modules/bower
├── is[email protected]1.0.0
├── [email protected]1.0.1
├── stringify-object@1.0.1
├── user[email protected]1.1.1
├── [email protected]1.0.5
├── [email protected]0.1.0
├── [email protected]2.3.3
├── [email protected]1.0.0
├── [email protected]1.0.2
├── bower[email protected]0.2.2
├── bower[email protected]0.2.2
├── graceful[email protected]3.0.6
├── lockfile@1.0.0
├── [email protected]3.0.1
├── lru[email protected]2.6.2
├── [email protected]0.6.1
├── [email protected]0.0.24
├── [email protected]1.4.0
├── [email protected]2.3.2
├── p[email protected]0.1.1 ([email protected]0.9.7)
├── [email protected]1.0.6 ([email protected]2.0.1)
├── [email protected]0.2.0 ([email protected]1.0.5)
├── which@1.1.1 ([email protected]0.1.7)
├── tar[email protected]1.5.0 ([email protected]1.0.0, tar[email protected]1.1.4)
├── request[email protected]0.3.1 ([email protected]0.0.2)
├── [email protected]4.5.3 ([email protected]2.0.1, [email protected]1.3.2, [email protected]1.0.4, [email protected]2.0.7)
├── fstream[email protected]1.0.2 ([email protected]2.0.1, [email protected]2.0.7)
├── [email protected]1.0.0 ([email protected]2.0.1, escape-string[email protected]1.0.3, [email protected]1.3.1, [email protected]2.0.1, [email protected]1.0.3)
├── [email protected]0.2.4 ([email protected]1.3.4)
├── [email protected]0.5.0 ([email protected]0.0.8)
├── [email protected]0.4.4 ([email protected]0.2.1, [email protected]0.4.4)
├── [email protected]0.11.0
├── bower[email protected]0.6.1 ([email protected]0.0.3, [email protected]2.0.3, [email protected]0.6.1, [email protected]0.9.1)
├── [email protected]2.0.0 ([email protected]0.3.7, [email protected]2.3.6)
├── decompress-zip@0.1.0 ([email protected]0.1.0, touch@0.0.3, [email protected]1.1.13, [email protected]0.3.0)
├── shell[email protected]1.4.3 ([email protected]0.0.1, [email protected]0.0.0, [email protected]0.0.0, [email protected]0.0.0)
├── bower[email protected]0.4.0 ([email protected]2.0.3, [email protected]0.0.3, [email protected]0.2.11)
├── [email protected]0.8.0 ([email protected]1.3.5, [email protected]1.1.1, [email protected]0.0.4, [email protected]2.3.7, [email protected]0.1.1, [email protected]0.5.1, [email protected]2.4.2, [email protected]2.5.2, [email protected]0.3.3)
├── [email protected]2.53.0 ([email protected]0.9.0, [email protected]5.0.0, [email protected]0.5.2, [email protected]0.5.0, [email protected]0.0.4, [email protected]0.4.0, [email protected]0.6.0, [email protected]0.1.2, [email protected]1.4.3, [email protected]2.3.3, [email protected]0.2.0, [email protected]0.0.7, [email protected]1.1.0, [email protected]0.9.4, [email protected]2.3.1, [email protected]2.0.11, [email protected]0.10.1)
├── bower[email protected]0.3.0 ([email protected]2.0.3, [email protected]0.2.0, [email protected]2.2.8, [email protected]2.3.1, [email protected]0.2.10, [email protected]0.3.5, [email protected]2.51.0)
├── [email protected]0.5.3 (object[email protected]2.0.0, [email protected]0.9.0, [email protected]3.0.3, [email protected]0.12.1, [email protected]1.0.3)
├── update[email protected]0.3.2 ([email protected]1.0.0, string[email protected]1.0.0, semver-diff@2.0.0, [email protected]1.0.0)
└── [email protected]0.3.2 (object[email protected]2.0.0, [email protected]1.0.1, [email protected]0.1.0, [email protected]2.0.1, [email protected]3.3.0)

把 grunt 也安装一下。

sudo npm install -g grunt-cli

输出。

/usr/local/bin/grunt -> /usr/local/lib/node_modules/grunt-cli/bin/grunt
grunt[email protected]0.1.13 /usr/local/lib/node_modules/grunt-cli
├── [email protected]0.3.1
├── [email protected]1.0.10 ([email protected]1.0.5)
└── findup-sync@0.1.3 ([email protected]2.4.2, [email protected]3.2.11)

重新 restore ,终于成功了。

Restoring packages for /Users/Openxlive/Desktop/helloWeb/WebApplication/project.json
Writing lock file /Users/Openxlive/Desktop/helloWeb/WebApplication/project.lock.json
npm WARN package.json [email protected]0.0.0 No description
npm WARN package.json [email protected]0.0.0 No repository field.
npm WARN package.json [email protected]0.0.0 No README data
Running "bower:install" (bower) task
>> Installed bower packages
>> Copied packages to /Users/Openxlive/Desktop/helloWeb/WebApplication/wwwroot/lib

Done, without errors.
Restore complete, 12380ms elapsed

运行网站。

dnx . kestrel

Started

打开浏览器,访问地址: http://localhost:5001

居然又报了一个错误。

An unhandled exception occurred while processing the request.

IOException: kqueue() FileSystemWatcher has reached the maximum nunmber of files to watch.
System.IO.KqueueMonitor.Add (System.String path, Boolean postEvents, System.Collections.Generic.List`1& fds) [0x00000] in <filename unknown>, line 0

这是 Mono 的一个已知错误,需要一个设置。

export MONO_MANAGED_WATCHER=false

再次运行,终于可以看到网站了。

时间: 2024-10-05 07:01:12

在Mac OS X Yosemite 10.10.3 中搭建第一个 ASP.NET 5 Web 项目的相关文章

mac OS X Yosemite (10.10.5) 下 安装vim 7.4笔记

摘要 前言 需求与mac OS X 自带vim版本的冲突 默认Python解释器问题 并非Mac自带python的 homebrew 1. 前言 本文为自己作死折腾的问题记录 2. 需求与mac OS X 自带vim版本的冲突 - 为什么用vim Emacs因为上手时候因为无关于Emacs的其他原因留下了很不好的回忆,现在也不是必须,不想学(_(:з」∠)_),Sublime Text 2/3在Build Python程序的时候,自带的console,输出很容易出问题,希望放在terminal下

MAC OS X Yosemite的PyQt4配置记录 by tsy

声明: 1)本报告由博客园bitpeach撰写,版权所有,免费转载,请注明出处,并请勿作商业用途. 2)若本文档内有侵权文字或图片等内容,请联系作者bitpeach删除相应部分. 3)本文档内容涉及Mac OS X Yosemite的PyQt4配置. 4)仅仅作为参考用途,抛砖引玉,不作为证据证明用途,请自行取舍,核实引用. 0目录 1.1参考文献 主要是汇总一下,我参考阅读的一些文献.以此为坚实基础,进行实践.这些参考博客或文章是非常宝贵的经验记录. 1.2环境 需要准备些什么 1.3过程步骤

Mac OS X Yosemite 10.10.3 apache+mysql+django web开发环境的搭建

准备工作: 1.确认mac os x 的版本号为10.10.3: 2.mac os x yosemite预装了apache.python,因此无需下载该包: 在shell下输入python即可查看版本: Python 2.7.6 (default, Sep 9 2014, 15:04:36) [GCC 4.2.1 Compatible Apple LLVM 6.0 (clang-600.0.39)] on darwin Type "help", "copyright"

Mac OS X Yosemite安装盘U盘制作

从App Store下载Mac OS X Yosemite安装程序,下载后的安装文件保存在应用程序(/Applications)文件夹中.请注意,此时一定不要直接启动该程序安装 OS X Yosemite,因为一旦安装完后该安装程序会被删除.至少,你应该先做完独立安装介质之后再启动该程序安装. 准备独立安装盘介质:你需要一个容量至少大于 8GB 的移动存储设备,比如 U 盘.移动硬盘或 SD 卡,将其插入 Mac,并启动磁盘工具对该介质执行”抹掉”操作,抹掉前请备份好该介质中的重要数据.盘符名请

Mac OS X Yosemite &amp; Arduino安装CH340 USB转串口驱动

新买的Arduino开发板 USB转串口使用了CH340芯片,在Mac OS X Yosemite上正常安装驱动后,在Arduino IDE的端口没发现相应的设备,使用以下方法后就能使用USB转串口调试和烧录程序.1.安装CH340驱动(驱动下载地址:http://www.wch.cn/download/CH341SER_MAC_ZIP.html)2.打开终端运行以下命令:  sudo nvram boot-args="kext-dev-mode=1"  sudo Reboot

Mac OS X Yosemite 10.10 配置 Apache+PHP 教程注意事项

首先启动 Apache,在终端里输入命令: sudo apachectl start 查看 Apache 版本: httpd -v 在Yosemite 10.10下,apache更新了 Server version: Apache/2.4.9 (Unix) Server built: Sep 9 2014 14:48:20 接着测试,我就发现如下几点需要修正,如有其它疑问欢迎交流: 1.重新启用PHP,避免脚本直接显示在页面上 首先是 http://localhost/ 会将 PHP 代码直接显

Mac OS X Yosemite 10.10 配置 Apache+PHP

查看当前系统的apache版本,终端下输入:httpd -v 1. 启动Apache 服务 sudo apachectl start 打开safari,访问:http://localhost,显示“It works!”表示Apache启动正常 当前访问的是Apache的默认目录,/Library/WebServer/Documents/ 2. 配置用户访问目录 因为之前已经配置过用户目录,这里提一下,首先创建用户目录:mkdir  ~/Sites 此时会在当前用户的根目录下创建一个Sites目录

Vmware10下安装Mac OS X Mountain Lion(10.8.5)

一.准备工作:(1)虚拟机系统:vmware workstation 10,(或vmware player),请自行在网上下载.(2)vmware的MAC补丁包.如果你使用的是vmware10,请下载补丁包V1.20,如果是vmware8或9,请下载补丁包V1.10.补丁包120是卡饭论坛中的网友hpmlo提供的.(3)苹果最新版操作系统OS X Mountain Lion,下载地址:http://kuai.xunlei.com/d/dBhJEAIdmABxhjZS8e7 二.安装软件(这一部分

Mac OS X Yosemite安装Hadoop 2.6记录

整个安装过程分为四部分: 一.  安装Homebrew 二.  ssh localhost 三. 安装Hadoop已经进行配置文件设置 (伪分布式) 四. 运行栗子 一. 安装Homebrew 采用Homebrew安装Hadoop非常简洁方便,之前在Windows上Cygwin上安装过Hadoop,感觉好麻烦. 关于Homebrew可以查看其官网 http://brew.sh/ 也可以查看 Homebrew 新一代OS X套件管理工具 一文. $ ruby -e "$(curl -fsSL ht