Questions tagged [atmosphere.js]

Atmospherejs.com is the repository for Meteor packages.

Atmospherejs is a website developed by Percolate Studio (acquired in summer 2015 by Meteor Developer Group), which lists all public Meteor packages. It features an incremental search interface and presents package metadata (README, number of stars, number of installs, install trends).

78 questions
4
votes
0 answers

Some cookies are misusing the recommended “sameSite“ attribute

I'm building a react application that uses atmosphere library to listen to a SpringBoot websocket, when the client tries to connect to the server, it throws an error in the console saying Some cookies are misusing the recommended “sameSite“…
Arar
  • 1,926
  • 5
  • 29
  • 47
4
votes
1 answer

How to force Atmosphere.js to use the preferred transport when reconnecting to the Server?

When the preferred transport fails, atmosphere tries to use the fallback transport. It tried to reconnect maxReconnect times. After that it calls onClose and onError. When I try the subscribe again Atmosphere always uses the fallback transport for…
Michael
  • 32,527
  • 49
  • 210
  • 370
4
votes
3 answers

How to save additional user details on meteor.js, such as home address

I am new to Meteor.js and followed the tutorial on meteor.com to create a task list to log into and post tasks. It was very easy to add the accounts-ui & accounts-password packages to the project. However when signing up, I also want the user to…
3
votes
2 answers

How to create a product view with slideshow in Meteor js

I am trying to create a Meteor js product page with a large product image where the image displayed changes based on the image selected from a set of 5 slideshow (or filmstrip) images. Basically similar to an amazon product page. I am using…
striker77
  • 544
  • 1
  • 6
  • 17
3
votes
1 answer

Meteor froala:editor-reactive save on change of data

I have Meteor project which uses the froala:editor-reactive package in order to set the user's about me field. Here is my template js code: Template.profile.helpers({ getAbout: function() { return Meteor.user().profile.about; }, doSave:…
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
3
votes
1 answer

Meteor Less package not working

I have a Meteor project and I'm trying to use my .less files to make some styles. Well, I installed less package from Atmosphere (https://atmospherejs.com/meteor/less) and did what usage says. My directory tree is like: AppFolder - admin …
Augusto TMW
  • 59
  • 1
  • 5
2
votes
1 answer

integrate atmosphere.js in react-native application

I want to integrate atmosphere.js in react native application . I know atmosphere.js will work without any browser browser involve .
Benhar Upasana
  • 235
  • 2
  • 9
2
votes
0 answers

Meteor package use private NPM package

I have written a private general purpose NPM package. Now I'm writing a meteor package because I need to access mongo collections for example. I also need to access my private NPM package. So I created a blank meteor package: meteor create…
Rockettomatoo
  • 257
  • 6
  • 18
2
votes
1 answer

Should I user meteor packages or copy js files?

There are many js libraries built by enthusiasts that are incredible. And some of them have found a place in atmospherejs (some of them migrated not by their autor). Should I use the original ones (js files) or add the meteor packages that are the…
Moro Silverio
  • 87
  • 2
  • 7
2
votes
0 answers

How to properly install Meteor packages in TypeScript

I use TypeScript and Meteor and Webstorm as my IDE. Now when I install a package from Atmosphere I get a lot of warnings in the IDE and CLI when I import modules from it. E.g. when I call in my code import {MeteorGriddle} from…
Obiwahn
  • 2,677
  • 2
  • 26
  • 36
2
votes
1 answer

Atmosphere Framework Websocket Returns Empty responseBody

I am using Spring-Boot (embedded container) with Atmosphere Framework based on this one and two sample projects. I am trying to do a very simple broadcast from one resource, the browser receives the message but the responseBody is empty string "". I…
szxnyc
  • 2,495
  • 5
  • 35
  • 46
2
votes
0 answers

How to determine which package has a particular dependency constraint?

> meteor update The following top-level dependencies were not updated to the very latest version available: * mdg:camera 1.2.0 (1.3.0 is available) > meteor add mdg:camera@1.3.0 => Errors while adding packages: While selecting…
Loren
  • 13,903
  • 8
  • 48
  • 79
2
votes
1 answer

Atmosphere @ManagedService @Inject not working

I have no idea, but my @Inject objects are not initialized with Weld inside of the ManagedService, my example is like this, @ManagedService(path = "/chat") public class EntryPointWS { private final Logger logger =…
Fahad
  • 858
  • 1
  • 8
  • 15
2
votes
2 answers

Meteor: import markdown from file

I've installed markdown package on Meteor: meteor add markdown And test it successfully: {{#markdown}} #Hello world!# {{/markdown}} Ok! Now I would like to import a markdown from a file and I had try in this way: if…
Luca Davanzo
  • 21,000
  • 15
  • 120
  • 146
1
vote
1 answer

Meteor - UserIsInRole always returning false

I Have added allaning:roles in my meteor-react project but Roles.userIsInRole(Meteor.userId(), ["ADMIN"]) always returning false. I have roles in my mongo as follows, { "_id" : "9B3D757wQA9Mz4RGt", "name" : "BUYER" } { "_id" : "PDCJH8D6JDo9fttFj",…
Tushar Kale
  • 159
  • 1
  • 12
1
2 3 4 5 6