Earlier quoted context omitted.
Wondered what your comment was about until I saw your username. Although I'm not one to really demand sites provide support for browsers without JS enabled it does seem a bit silly that the site requires JS to just display what is basically a static page.
For those curious, the FAQ says that this should be addressed in the future (it presently sends HTML to search engines if the spiderable package is installed.) >A future version of Meteor will also send HTML to web browsers on inital page load. The Meteor templating system was designed specifically to support this use case.
Meteor on Windows
11–20 of 25 posts
Re: Meteor on Windows
#12Meteor on Windows
Re: Meteor on Windows
#13With certain frameworks and languages, I have just decided to bite the bullet and use Linux to avoid running into bugs that the minority have. Logically, if few people have a bug, it won't get as much resources to get fixed. It's like developing a Rails application on Windows, I can do it sure; but _should_ I? Linux Mint is a great alternative to the clusterfuck that Ubuntu has become and it's been a simple transitio…
Vagrant is also an awesome alternative to a VM or full installation of any Linux flavor. I've been playing with it and together with the subset of Linux commands that comes with MSysGit I can even SSH into the Vagrant box from the regular Windows command prompt or Console2.
Edit: And it should be highlighted that these Vagrant solutions offer a work around for the Meteor MongoDB to be able to utilize the Vagrant Synced folders, so the editing and viewing is near-native using your standard Windows tools. The live updating in Meteor also works, and the Vagrant versions also support Meteorite.
Re: Meteor on Windows
#14Re: Meteor on Windows
#15With certain frameworks and languages, I have just decided to bite the bullet and use Linux to avoid running into bugs that the minority have. Logically, if few people have a bug, it won't get as much resources to get fixed. It's like developing a Rails application on Windows, I can do it sure; but _should_ I? Linux Mint is a great alternative to the clusterfuck that Ubuntu has become and it's been a simple transitio…
Vagrant is also an awesome alternative to a VM or full installation of any Linux flavor. I've been playing with it and together with the subset of Linux commands that comes with MSysGit I can even SSH into the Vagrant box from the regular Windows command prompt or Console2.
Re: Meteor on Windows
#16Earlier quoted context omitted.
Vagrant is also an awesome alternative to a VM or full installation of any Linux flavor. I've been playing with it and together with the subset of Linux commands that comes with MSysGit I can even SSH into the Vagrant box from the regular Windows command prompt or Console2.
Huge fan of vagrant, but found it really annoying for node projects. It seems virtualbox vm's don't work well when mixing shared folders and symlinks (used for local npm installs). Has anyone found a workout for this?
Essentially the directory for things like the NPM modules and the MongoDB database files would be a mount --bind symlink. This in concert with the Vagrant / VirtualBox flag:
config.vm.provider "virtualbox" do |v|
v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant-root", "1"]
end
My Meteor Chef recipe automates the binding of these using the Chef "mount" resource and is around line 89 of the chef recipe: https://github.com/shoebappa/vagrant-meteor-windows/blob/mas...I don't think either of us could get this to work when putting this in fstab because Vagrant also has things in fstab and so the VM wouldn't boot, but in my case Chef handles the creation of these on boot, and in Gabriel's he recommends putting the command in the mount --bing in the .bashrc
Re: Meteor on Windows
#17Meteor on Windows
Re: Meteor on Windows
#18Re: Meteor on Windows
#19Meteor on Windows
I know what you are trying to say, but I'd argue that the time has gone and past on HTML-only. JavaScript is a required part of the internet presentation platform at this point.
But, necessary? Only for interactive visualizations and content updates.
Re: Meteor on Windows
#20Earlier quoted context omitted.
I know what you are trying to say, but I'd argue that the time has gone and past on HTML-only. JavaScript is a required part of the internet presentation platform at this point.
Required for this page, yes. But, necessary? Only for interactive visualizations and content updates.