Click here to Skip to main content
15,914,419 members
Everything / Meteor

Meteor

Meteor

Great Reads

by Chris Duke
This article demonstrates how the Meteor Javascript app platform can be used in conjunction with Crosswalk to create a simple app for an Android Smartwatch
by Andrei Markeev
Collection of TypeScript decorators for MeteorJs.
by Caleb McElrath
An all too common tale of a stalled package installation and the valiant efforts to resolve it
by Stas Wolski
Learn how to use JavaScript Event Calendar with MeteorJS Framework

Latest Articles

by Stas Wolski
Learn how to use JavaScript Event Calendar with MeteorJS Framework
by Caleb McElrath
An all too common tale of a stalled package installation and the valiant efforts to resolve it
by Andrei Markeev
Collection of TypeScript decorators for MeteorJs.
by Chris Duke
This article demonstrates how the Meteor Javascript app platform can be used in conjunction with Crosswalk to create a simple app for an Android Smartwatch

All Articles

Sort by Score

Meteor 

15 Oct 2015 by Chris Duke
This article demonstrates how the Meteor Javascript app platform can be used in conjunction with Crosswalk to create a simple app for an Android Smartwatch
25 Nov 2015 by Andrei Markeev
Collection of TypeScript decorators for MeteorJs.
7 Feb 2017 by Caleb McElrath
An all too common tale of a stalled package installation and the valiant efforts to resolve it
30 Sep 2015 by B. Clay Shannon
I've got a prototype created in Meteor where the CSS / jQuery works fine in creating a shadow effect and adding a border to various images as they are hovered; specifically, in the Meteor prototype (it's a Sharepoint app, but testing features like this out is much quicker with Meteor) I have...
30 Sep 2015 by B. Clay Shannon
This CSS works real well (getting rid of the jQuery altogether):#imgPostTravelTop:hover, #imgPostTravelTopRight:hover, #imgPostTravelCenter:hover, #imgPostTravelBottom:hover { z-index: 4; -moz-box-shadow: 0 0 7px #000; -webkit-box-shadow: 0 0 7px #000; box-shadow: 0 0 7px #000; ...
16 Jan 2016 by Kornfeld Eliyahu Peter
Quote:How do I hook into an existing, running MongoDB instance?You can start meteor with the MONGO_URL environment var set:$ MONGO_URL=mongodb://localhost:27017 meteorNote that pre-existing data in mongo may be hard to deal with.unofficial-meteor-faq - GitHub[^]
8 May 2016 by George Jonsson
I don't think you want a unique CSS class for this.If, and that is a big if, I have understood you correctly, you want to have the same style and layout for your HTML page, but with a different background image for the main element.So basically your CSS file should be static and not...
18 Aug 2016 by Rafael Becker
There's an external webservice accessed directly by browser that takes the user to a web page which deals the request according to the parameters passed in the url and then returns a pdf file directly in the browser view.I'm working on an application that aims to make a call to this...
5 Feb 2018 by Stas Wolski
Learn how to use JavaScript Event Calendar with MeteorJS Framework
18 Aug 2016 by bilashcse
You can try. I have already worked for this. This example will help you.var path = require('path');var mime = require('mime');app.get('/download', function(req, res){ var file = __dirname + '/upload-folder/dramaticpenguin.MOV'; var filename = path.basename(file); var...
25 Jun 2020 by OctoDev20
Hello All, I’m new to Meteor / React. I want to build a Real-Time Page where Entries in a MongoDB Collection will be displayed on a WebPage. But the first step would be to create these objects in MongoDB with a Config WebPage for the User that...
8 May 2016 by Member 11912047
I have a mongodb setup where there any documents for video games. Each document contains information about the game like the title, etc. I want to display each document as a card with html and css, displaying the information about it. Each card needs to have an image of the game on it, so I...
16 Jan 2016 by amr mustafa
Hello , I am new to meteorJS I want to change the default db of meteor js project to existing db , my existing db url is localhost:27017\DesignerNote : i am using windows Thank you.
7 Oct 2016 by thunderdelta
You can use rest or soap packages for meteor to get data from asp.net services. Then, create a server side method to get data from api and convert to json format. You can publish it like a collection and subscribe it from client side.