{"id":18275052,"url":"https://github.com/soundofdarkness/qpm","last_synced_at":"2025-04-09T03:44:58.686Z","repository":{"id":113923139,"uuid":"103636482","full_name":"Soundofdarkness/qpm","owner":"Soundofdarkness","description":"Quarks Package Manager","archived":false,"fork":false,"pushed_at":"2017-09-15T09:12:58.000Z","size":1261,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-14T22:25:41.022Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Soundofdarkness.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-09-15T08:59:09.000Z","updated_at":"2017-09-15T09:10:49.000Z","dependencies_parsed_at":"2023-04-16T22:14:58.071Z","dependency_job_id":null,"html_url":"https://github.com/Soundofdarkness/qpm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Soundofdarkness%2Fqpm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Soundofdarkness%2Fqpm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Soundofdarkness%2Fqpm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Soundofdarkness%2Fqpm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Soundofdarkness","download_url":"https://codeload.github.com/Soundofdarkness/qpm/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247974594,"owners_count":21026742,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T12:11:44.043Z","updated_at":"2025-04-09T03:44:58.664Z","avatar_url":"https://github.com/Soundofdarkness.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# qpm - Quarks Package Manager\n\n[![Linux Build Status](https://travis-ci.org/atom/qpm.svg?branch=master)](https://travis-ci.org/atom/qpm)\n[![Windows Build Status](https://ci.appveyor.com/api/projects/status/j6ixw374a397ugkb/branch/master?svg=true)](https://ci.appveyor.com/project/Atom/qpm/branch/master)\n[![Dependency Status](https://david-dm.org/atom/qpm.svg)](https://david-dm.org/atom/qpm)\n\nDiscover and install Atom packages powered by [atom.io](https://atom.io)\n\nYou can configure qpm by using the `qpm config` command line option (recommended) or by manually editing the `~/.atom/.qpmrc` file as per the [npm config](https://docs.npmjs.com/misc/config).\n\n## Relation to npm\n\nqpm bundles [npm](https://github.com/npm/npm) with it and spawns `npm` processes to install Atom packages. The major difference is that `qpm` sets multiple command line arguments to `npm` to ensure that native modules are built against Chromium's v8 headers instead of node's v8 headers.\n\nThe other major difference is that Atom packages are installed to `~/.atom/packages` instead of a local `node_modules` folder and Atom packages are published to and installed from GitHub repositories instead of [npmjs.com](https://www.npmjs.com/)\n\nTherefore you can think of `qpm` as a simple `npm` wrapper that builds on top of the many strengths of `npm` but is customized and optimized to be used for Atom packages.\n\n## Installing\n\n`qpm` is bundled and installed automatically with Atom. You can run the _Atom \u003e Install Shell Commands_ menu option to install it again if you aren't able to run it from a terminal (macOS only).\n\n## Building\n\n  * Clone the repository\n  * :penguin: Install `libsecret-1-dev` (or the relevant `libsecret` development dependency) if you are on Linux\n  * Run `npm install`; this will install the dependencies with your built-in version of Node/npm, and then rebuild them with the bundled versions.\n  * Run `./bin/npm run build` to compile the CoffeeScript code (or `.\\bin\\npm.cmd run build` on Windows)\n  * Run `./bin/npm test` to run the specs (or `.\\bin\\npm.cmd test` on Windows)\n\n### Why `bin/npm` / `bin\\npm.cmd`?\n\n`qpm` includes `npm`, and spawns it for various processes. It also comes with a bundled version of Node, and this script ensures that npm uses the right version of Node for things like running the tests. If you're using the same version of Node as is listed in `BUNDLED_NODE_VERSION`, you can skip using this script.\n\n## Using\n\nRun `qpm help` to see all the supported commands and `qpm help \u003ccommand\u003e` to\nlearn more about a specific command.\n\nThe common commands are `qpm install \u003cpackage_name\u003e` to install a new package,\n`qpm featured` to see all the featured packages, and `qpm publish` to publish\na package to [atom.io](https://atom.io).\n\n## Behind a firewall?\n\nIf you are behind a firewall and seeing SSL errors when installing packages\nyou can disable strict SSL by running:\n\n```\nqpm config set strict-ssl false\n```\n\n## Using a proxy?\n\nIf you are using a HTTP(S) proxy you can configure `qpm` to use it by running:\n\n```\nqpm config set https-proxy https://9.0.2.1:0\n```\n\nYou can run `qpm config get https-proxy` to verify it has been set correctly.\n\n## Viewing configuration\n\nYou can also run `qpm config list` to see all the custom config settings.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoundofdarkness%2Fqpm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoundofdarkness%2Fqpm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoundofdarkness%2Fqpm/lists"}