Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generated Dart Editor web app not working

I just downloaded the latest version of the dart editor and did the following:

1) Created a new web application. When I try to run, I get the following error:

> Failed to load resource: the server responded with a status of 404
> (Not Found)  
> http://127.0.0.1:3030/C:/DartApps/HelloWeb/web/packages/browser/dart.js

2) After some research, I tried the following - thinking I may need some dependencies - Pub install. Now I get the following error:

> Pub install failed, [1] Resolving dependencies... Got socket error
> trying to find package "browser" at https://pub.dartlang.org. OS
> Error: Peer's Certificate issuer is not recognized., errno = -8179

Any ideas what I can do to get past this issue? I'm not getting very far.

Thanks,

Shon

like image 566
shons Avatar asked Jun 13 '13 18:06

shons


1 Answers

Try running the pub update command first. That should update your dependencies.

http://pub.dartlang.org/doc/pub-update.html

like image 59
computer10171 Avatar answered Oct 26 '22 06:10

computer10171