---
title: "Using nightly builds | Nutrient"
canonical_url: "https://www.nutrient.io/guides/web/troubleshooting/nightlies/"
md_url: "https://www.nutrient.io/guides/web/troubleshooting/nightlies.md"
last_updated: "2026-06-09T10:30:04.014Z"
description: "Install and test Nutrient nightly builds for Web SDK and Document Engine. Step-by-step guide with npm and Docker instructions."
---

In certain circumstances, our Support team might ask you to try a nightly build to see if a fix we built for you works. When running nightlies, keep the following in mind:

- Nightlies should never be used in production. While they still undergo automated testing, they don’t have the same strict QA as our full releases.

- There’s no support for migrations in any direction. Since nightlies are cut from our master branch, there’s no guarantee they’ll be compatible with the next scheduled release, nor is there any guarantee you can downgrade to the current version. Always run nightlies against a fresh database, and only use test data.

## Using nightlies

Nutrient Web SDK can be added to your project directly from our nightly using npm. The nightly version is available under the `@nutrient-sdk/viewer` package with the `nightly` tag:

For example:

```bash

# npm

npm install @nutrient-sdk/viewer@nightly

# yarn

yarn add @nutrient-sdk/viewer@nightly

```

### Document Engine

The Document Engine nightly image is provided via both Docker Hub and Amazon ECR Public Registry. To switch to it, replace the tag of the container image to `nightly`.

For Docker Hub: `pspdfkit/document-engine:nightly`

For Amazon ECR Public Registry: `public.ecr.aws/pspdfkit/document-engine:nightly`

---

## Related pages

- [Bug Reporting](/guides/web/troubleshooting/bug-reporting.md)
- [Chunkloaderror During Pspdfkit To Nutrient Migration In Ember](/guides/web/troubleshooting/chunkloaderror-during-pspdfkit-to-nutrient-migration-in-ember.md)
- [This will make the current directory contents available through `http://0.0.0.0:5000`.](/guides/web/troubleshooting/common-issues.md)
- [Debug Logging](/guides/web/troubleshooting/debug-logging.md)
- [Content Security Policy](/guides/web/troubleshooting/content-security-policy.md)
- [Fixing Split Undefined Error With Npm Build](/guides/web/troubleshooting/fixing-split-undefined-error-with-npm-build.md)
- [Fixing Symbol Iterator Error](/guides/web/troubleshooting/fixing-symbol-iterator-error.md)
- [Testing Troubleshooting](/guides/web/troubleshooting/testing-troubleshooting.md)
- [Typescript](/guides/web/troubleshooting/miscellaneous/typescript.md)
- [Webassembly Simd Support](/guides/web/troubleshooting/webassembly-simd-support.md)

