Meteor Guide in PDF, mobi, ePub (GitBook)

PDF - https://www.gitbook.com/download/pdf/book/kvetoslavnovak/the-gitbook-meteor-guide
mobi - https://www.gitbook.com/download/mobi/book/kvetoslavnovak/the-gitbook-meteor-guide
ePub - https://www.gitbook.com/download/epub/book/kvetoslavnovak/the-gitbook-meteor-guide
GitBook - https://kvetoslavnovak.gitbooks.io/the-gitbook-meteor-guide/content/

4 Likes

Amazing! Is this updated automatically when the guide is updated?

Yes, it is.
This one is based on this github fork - https://github.com/kvetoslavnovak/GitBook-Meteor-Guide
because you need special SUMMARY.md file to generate content of the gitbook.
https://github.com/kvetoslavnovak/GitBook-Meteor-Guide/blob/master/SUMMARY.md

There is also PR in official meteor/guide repo for this

It would be better if MDG sets up their own Gitbook account.

2 Likes

Hi,

FYI, and since the pdf gitbook is not updated anymore, I’ve got greate success converting the guidee with wkhtmlpodf.
Here is the commandline from the 1.6 guide book, loaded from a local hexo instance.

wkhtmltopdf \
	--dpi 300 \
	--load-error-handling ignore \
	http://127.0.0.1:4000/index.html \
	http://127.0.0.1:4000/code-style.html \
	http://127.0.0.1:4000/structure.html \
	http://127.0.0.1:4000/1.6-migration.html \
	http://127.0.0.1:4000/collections.html \
	http://127.0.0.1:4000/data-loading.html \
	http://127.0.0.1:4000/methods.html \
	http://127.0.0.1:4000/accounts.html \
	http://127.0.0.1:4000/testing.html \
	http://127.0.0.1:4000/routing.html \
	http://127.0.0.1:4000/ui-ux.html \
	http://127.0.0.1:4000/blaze.html \
	http://127.0.0.1:4000/react.html \
	http://127.0.0.1:4000/angular.html \
	http://127.0.0.1:4000/atmosphere-vs-npm.html \
	http://127.0.0.1:4000/using-atmosphere-packages.html \
	http://127.0.0.1:4000/writing-atmosphere-packages.html \
	http://127.0.0.1:4000/using-npm-packages.html \
	http://127.0.0.1:4000/writing-npm-packages.html \
	http://127.0.0.1:4000/mobile.html \
	http://127.0.0.1:4000/build-tool.html \
	http://127.0.0.1:4000/security.html \
	http://127.0.0.1:4000/deployment.html \
	http://127.0.0.1:4000/CONTRIBUTING.html \
	guide.meteor-1.6.pdf

Here is a gist.
If one need it, I’d provide a pdf somewhere ?…

HTH