Is twitter authentication on meteor js's roadmap? If not, how can I implement it?
Mike Bannister (@possibilities) has been developing this oauth1 Pull Request against the auth branch: https://github.com/meteor/meteor/pull/251
I believe it's progressing well. So it should be coming soon, I'd guess probably when auth is released into master.
Auth branch was merged into devel branch.
Can check out directly from Meteor devel branch.
cd ~
git clone git://github.com/meteor/meteor.git
cd meteor
git checkout -t origin/devel
./admin/generate-dev-bundle.sh
./install.sh
These links may help you to implement code for auth with twitter(and facebook, etc).
Accounts API and Getting Started With Auth(deprecated but still works)