Top "Package" questions

Package broadly refers to two things: 1) a usable unit/component of built/compiled software, or 2) a partition of the global namespace (Java).

Problems installing the devtools package

I wish to use the devtools package. I've run the following commands: > install.packages("devtools", dependencies = TRUE) .... > library(…

r package devtools
How can I specify the required Node.js version in package.json?

I have a Node.js project that requires Node version 12 or higher. Is there a way to specify this in …

node.js npm package version
What is the convention for word separator in Java package names?

How should one separate words in package names? Which of the following are correct? com.stackoverflow.my_package (underscore) com.…

java naming-conventions package
What is the difference between require() and library()?

What is the difference between require() and library()?

r package r-faq
How to get current class name including package name in Java?

I'm working on a project and one requirement is if the 2nd argument for the main method starts with “/” (for …

java eclipse package classname
Standard way to embed version into python package?

Is there a standard way to associate version string with a python package in such way that I could do …

python string package
LaTeX package for syntax highlighting of code in various languages

I am looking for a LaTeX package that does syntax highlighting on code. For example, right now I use the …

syntax package latex highlight
How to remove a package in sublime text 2

I would like to remove and/or deactivate the Emmet package in Sublime Text 2. Should I just remove the Emmet …

package sublimetext2 uninstallation
Node package ( Grunt ) installed but not available

I'm trying to build a github jquery-ui library using grunt, but after running npm install I still can't run the …

node.js build package npm
Are there best practices for (Java) package organization?

A little while ago, I saw a question answered here regarding the fine-grained organization of java packages. For example, my.…

java package naming-conventions