I am new to meteor and custom packages. There is a meteor package on GitHub (https://github.com/MacNCheeze/meteor-ionic) which is a modified version of the meteoric:ionic package listed in the package repo.
I am wondering what command is required to add this package from GitHub into Meteor.
This command should ne help: meteor add urigo:ionic and link to this package https://atmospherejs.com/urigo/ionic
From the markdown of meteor-ionic, it has the following dependencies
iron:router
fourseven:scss
meteoric:ionic-sass
meteoric:ionicons-sass
meteoric:ionic
They are published Meteor packages and the command to install one or multiple Meteor packages is
meteor add <package> [package...]
Have fun!
Related
I am running a gatsby project with tailwind css with version of tailwind 2.0.2.
But while running the project i am getting a package error "Package subpath './lib/node' is not defined by "exports"
How to solve this issue?
Thank you
Possibly there is a version mismatch between the tailwindcss package and the #tailwindcss/node package.
It seems that the version of tailwindcss package that you're using is 2.0.2 and this version is not compatible with the #tailwindcss/node package,
Try to update these package using
npm install tailwindcss#latest
and also update your gatsby-plugin-tailwindcss
And then delete node modules folder and package-lock.json and then run npm install again.
Hope it helps!
I read some online documentation to install the SASXport and it said to install the package from the below website https://cran.r-project.org/src/contrib/Archive/SASxport
I used the latest SASxport_1.7.0.tar.gz version of it and i could not install the package SASxport. when i do so i get the below message which removes the SASxport package and when i call the library(SASxport) it says, there is no package called ‘SASxport’.
Could you please help me with this, like how to install this package?
Is it possible to check all available versions of an atmospherejs package?
For example, I am trying to install the twbs:bootstrap#=4.0.0-alpha.4 following their github page
But this does not install giving error:
no such version twbs:bootstrap#=4.0.0-alpha.4
Hence I am looking to find a way to check which versions are available for any given atmospherejs meteor package.
You can use
meteor show twbs:bootstrap
or
meteor show --show-all twbs:bootstrap
for older or pre-released versions. Latest available version is 4.0.0-alpha2
I'm using more and more dev packages installed from github.
I find myself wondering if there is an easy way to update these packages?
Essentially looking for something like update.packages() equivalent for install_github() (or indeed any other repo than CRAN).
Similar question for R-forge has some ideas:
Automatically update packages installed from R-forge
Maybe the best way to do this would be to install dev packages in their own separate directory:
How to specify lib directory when installing development version R Packages from github repository
keep a tab on packages as they are installed, and try re-installing list regularly.
Any thoughts?
There are a number of packages that will do this:
#hrbrmstr recommends the dtupdate package
#jeborsel suggests adding a github repository as drat-repository via the drat package from Dirk Eddelbuettel. This will let you use update.packages() on it
You could use the pacman package to install and load the current version of a package hosted on GitHub:
pkg = c('andschar/dbreport', 'Rdatatable/data.table')
pacman::p_load_current_gh(char = pkg)
You can call install_github again to get the most recent version of the package.
I'm wanting to try out the "gm" node package. I've currently got node-gd installed and want to see what gm offers.
I'm using Meteor 0.9.0.1 and this is my packages.json file:
{
"node-gd":"0.2.3",
"gm" :"1.16.0"
}
I ran "meteor update" .... It didn't install, so I guess I've done something wrong.
me#ubuntu:~/myapp$ meteor update
Refreshing package metadata. This may take a moment.
Refreshing package metadata. This may take a moment.
upgraded autoupdate from version 1.0.4 to version 1.0.5
upgraded less from version 1.0.5 to version 1.0.6
myapp: updated to Meteor 0.9.0.1.
All your package dependencies are already up to date.
Can anyone advise how to install this?
I think you need meteorhacks:npm
meteor add meteorhacks:npm
meteor
This should trigger the installation of the npm modules. Of note may be the new notation is Meteor.npmRequire and no longer Meteor.require