I am trying to use the code from inside another meteor server. I can run the Leaderboard example with numtel:mysql-server package
But while using the package from another server, I have to do this var LiveMysql = Meteor.npmRequire('mysql-live-select'); this works
but var LiveMysql = Meteor.npmRequire('numtel:mysql-server'); does not work.
Why I am not able to use this package with another meteor application. Even when I update the package.json it still not accepts it. Even Meteor add package does not work. The code is written inside the server.
Dear Ben
I am trying to use the code from inside another meteor server. I can run the Leaderboard example with numtel:mysql-server package
But while using the package from another server, I have to do this var LiveMysql = Meteor.npmRequire('mysql-live-select'); this works but var LiveMysql = Meteor.npmRequire('numtel:mysql-server'); does not work.
Why I am not able to use this package with another meteor application. Even when I update the package.json it still not accepts it. Even Meteor add package does not work. The code is written inside the server.