Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.awfixer.me/llms.txt

Use this file to discover all available pages before exploring further.

JSTime supports directly adding GitHub repositories as dependencies of your project.
$ jspm add github:lodash/lodash

This will add the following line to your package.json:
{
  "dependencies": {
+   "lodash": "github:lodash/lodash"
  }
}

JSTime supports a number of protocols for specifying Git dependencies.
$ jspm add git+https://github.com/lodash/lodash.git
$ jspm add git+ssh://github.com/lodash/lodash.git#4.17.21
$ jspm add git@github.com:lodash/lodash.git
$ jspm add github:colinhacks/zod

See Docs > Package manager for complete documentation of JSTime’s package manager.