apps/portal/README.md
Drop-in script to make the bulk of Ghost membership features work on any theme.
Ghost automatically injects Portal script on all sites running Ghost 4 or higher.
Alternatively, Portal can be enabled on non-ghost pages directly by inserting the below script on the page.
<script defer src="https://unpkg.com/@tryghost/portal@latest/umd/portal.min.js" data-ghost="https://mymemberssite.com"></script>
The data-ghost attribute expects the URL for your Ghost site, which is the only input Portal needs to work with your site's membership data via Ghost APIs.
By default, the script adds a default floating trigger button on the bottom right of your page which is used to trigger the popup on screen.
Its possible to add custom trigger button of your own by adding data attribute data-portal to any HTML tag on page, and also specify a specific page to open from it by using it as data-portal=signup.
Share modal can be opened with data-portal="share" (or #/share).
Default (zero-config) usage:
<button type="button" data-portal="share">Share</button>
On pages where {{ghost_head}} is rendered, Portal will auto-resolve metadata from DOM tags:
Troubleshooting missing preview metadata:
{{ghost_head}}.The script also adds custom class names to this element for open and close state of popup - gh-portal-open and gh-portal-close, allowing devs to update its UI based on popup state.
Refer the docs to read about ways in which Portal can be customized for your site.
Portal runs automatically when using Ghost's development command from the monorepo root:
pnpm dev
To run Portal in a standalone fashion, use pnpm preview and open http://localhost:3000.
To create a production minified bundle in umd/portal.min.js:
pnpm build
To run tests in watch mode:
pnpm test
Portal is primarily tested via Ghost's e2e Playwright tests in the e2e/ directory. Run them from the monorepo root:
pnpm test:e2e
A patch release can be rolled out instantly in production, whereas a minor/major release requires the Ghost monorepo to be updated and released. In either case, you need sufficient permissions to release @tryghost packages on NPM.
If you're releasing new code that should not immediately go live always use a minor or major version when publishing.
In order to have Ghost's e2e tests run against the new code on CI or to test the new code in staging, you need to publish to npm following the Minor / major release process below.
pnpm ship and select a patch version when promptedmainpnpm ship and select a minor or major version when promptedmainIf the CI doesn't clear JsDelivr cache to get the new version out instantly, you may want to do it yourself manually (docs). Typically, you'll need to open https://purge.jsdelivr.net/ghost/portal@~${PORTAL_VERSION}/umd/portal.min.js and
https://purge.jsdelivr.net/ghost/portal@~${PORTAL_VERSION}/umd/main.css in your browser, where PORTAL_VERSION is the latest minor version in ghost/core/core/shared/config/defaults.json (code)
Copyright (c) 2013-2026 Ghost Foundation - Released under the MIT license.