Come build with us.
Stacks API v13 for Stacks 5.0
libraries
libraries
Array
An array of library dictionaries.
An array of library dictionaries.
Assets, Templates, and Libraries are similar. Each can contain content and files to be published. But each imply different behavior and should be used differently.
Assets are NOT processed for templates. They are NOT included in edit-mode. Assets should be used whenever possible. They are simple and low-cost.
Libraries are NOT processed for templates. Some libraries are included in edit-mode. Some libraries are built-in to stacks (e.g. jQuery and FontAwesome). Libraries are shared between all stacks on the site/page. Use a library whenever you need to share common content between stacks.
Templates ARE processed for template variables. Some templates are included in edit-mode. Since templates must be processed you should include as few templates as possible – move as much of your content to assets or libraries whenever you can.
There is a complete example of using a custom library on GitHub: Velocity Stack.
Each line in the libraries array should be a dictionary. And each dictionary should represent a single library that should be called and/or published.
Warning: Libraries are shared between all stacks. You should use caution and be a good developer citizen when choosing to include common libraries: check with other developers on the Stacks Slack Channel before including a popular library. If you include some code intended to be used by only your stacks, give the library an appropriatly unique name: e.g.
com.yourcompany.yourlibrary
The library dictionary can include the following keys:
name
The name of the library. This can be a custom name (see warning above) or the name of a built-in library:
jQuery
– 1.8.3, 1.9.1, 1.10.2, 1.11.3, 1.12.4, 2.0.3, 2.1.4, 2.2.4, 3.0.0, 3.1.1jQueryUI
– 1.11.4FontAwesome
– 4.7.0MooTools
(deprecated, limited support) – 1.4vuejs
(available: API v10) – 2.3.4Built-in libraries can be published with the site (this is the default) or linked from the most popular CDN (which differs for each library and is subject to change with the whims of the internet change). A CDN will only be used if the user opts-in to that feature using the Stacks preferences.
filename
The name of a file containing the library content.
scope
(in API v10)If no scope is included, the scope defaults to site
. Built-In libraries always publish in the site-scope. The scope can be any of the following:
- `site` -- (default) -- The content of the custom library will be published to the Stacks common folder for the site and each page that uses the stack will include a CSS or JS reference to the file in the `<head>` of the page.
- `page` -- The content will be included in the page's CSS or JS file. Page-scoped CSS libraries will be included in edit-mode.
type
The scope of a template determins where on the page/file it will be published, as well as which template variables will be processed. All custom libraries must include a type.
css
– The each scope publishes content for each stack instance on the page. All tempalte variables will be processed.js
– The page scope publishes content ONLY ONCE for all stack instances on the page. Some template variables will be processed. Page-Scoped template variables will be processed, as well as any variable that is static for the entire page (e.g. version numbers and file-paths). Each template variable lists the scopes that it will be published in.minVersion
and maxVersion
Stacks includes many versions of jQuery built in. If your stack is only compatible with specific versions, you should set the min/max such that your stack will always work. Stacks will attempt to find the newest version of jQuery that works for the entire page. Since that is not always possible, this is a best-effort attempt. In the cases when Stacks cannot find a compatible version, stacks with newer min/max versons will be prefered.
Warning: If your stack can work with any release of jQuery, DO NOT set any versions limits. A stack that supports a wider set will always work the best