npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@adobe/reactor-uploader

v6.0.2

Published

Command line tool for uploading Tags extensions.

Downloads

618

Readme

Adobe Experience Platform Tags Extension Uploader Tool

Build Status npm (scoped)

Adobe Experience Platform Tags is a next-generation tag management solution enabling simplified deployment of marketing technologies. For more information regarding Tags, please visit our product website.

The uploader tool allows extension developers to easily upload their Platform Tags extension to the extension marketplace. It can be used for uploading brand new extension packages or new versions of existing extension packages.

For more information about developing an extension for Tags, please visit our extension development guide.

[!WARNING]
The uploader tool now uses Adobe's Oauth Server-to-Server credential format by default.

Legacy support for jwt-auth credentials will end completely by Adobe in January 2025. You may download and run the legacy version of the uploader here.

Usage

Before running the uploader tool, you must first have Node.js installed on your computer.

You will also need to have already created a zip file containing your extension package. The @adobe/reactor-packager tool can be used to create such a zip file.

Finally, you will need to be authorized to upload extensions to Tags. This is done by first creating an integration through Adobe I/O. Please see the Access Tokens documentation for detailed steps on creating an integration and procuring extension management rights.

Once your zip file is ready to upload and you've been granted extension management rights, you can use the uploader tool in either a question-answer format or by passing information through command line arguments.

Question-Answer Format

To use the uploader in a question-answer format, run the uploader tool by executing the following command from the command line within the directory containing your extension package zip file:

npx @adobe/reactor-uploader

The uploader tool will ask for any information necessary to upload the zip file.

Command Line Arguments

To skip any of the questions the uploader would typically ask, you can pass the respective information as command line arguments. An example is as follows:

npx @adobe/reactor-uploader package-myextension-1.0.0.zip --auth.client-id=abcdefghijklmnopqrstuvwxyz12345 --auth.client-secret=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

The first positional parameter is the path (relative or absolute) to the zip file you wish to upload. In the example, package-myextension-1.0.0.zip is passed as an argument for this parameter.

The named parameters are as follows:

--auth.client-id (for authentication using an Adobe I/O integration)

Your Client ID. You can find this on the overview screen for the integration you have created within the Adobe I/O console.

Client ID can also be provided by setting an environment variable. The environment variable should be named one of the following, depending on which Experience Platform Tags environment will be receiving the extension package:

  • REACTOR_IO_INTEGRATION_CLIENT_ID_DEVELOPMENT
  • REACTOR_IO_INTEGRATION_CLIENT_ID_STAGE
  • REACTOR_IO_INTEGRATION_CLIENT_ID (this is the default, and is used for production environment)
--auth.client-secret (for authentication using an Adobe I/O integration)

Your Client Secret. You can find this on the overview screen for the integration you have created within the Adobe I/O console.

Client Secret can also be provided by setting an environment variable. The environment variable should be named one of the following, depending on which Experience Platform Tags environment will be receiving the extension package:

  • REACTOR_IO_INTEGRATION_CLIENT_SECRET_DEVELOPMENT
  • REACTOR_IO_INTEGRATION_CLIENT_SECRET_STAGE
  • REACTOR_IO_INTEGRATION_CLIENT_SECRET (this is the default, and is used for production environment)
--environment (for Adobe internal use only)

The environment to which the extension package should be uploaded. Valid options are development, stage, production. Users outside of Adobe don't need to use this flag.

-- auth.scope (for authentication using an Adobe I/O integration)

The scopes to bind to the Access Token that is returned. Sane defaults are provided on your behalf within this repository, but you may override them if it is necessary.

--auth.scheme (for authentication using an Adobe I/O integration)

The type of authentication method when calling Adobe IO. This defaults to oauth-server-to-server and is used in conjunction with your Client ID & Client Secret.

--auth.access-token

Bypass the call to gain an Access Token if you already have the ability to supply it to the command line or through an environment variable. This is useful if you are running this tool in a CI/CD environment. We highly encourage only using an environment variable within a CI/CD environment, as it is more secure than passing it through the command line.

The environment variable should be named one of the following, depending on which Experience Platform Tags environment will be receiving the extension package:

  • REACTOR_IO_INTEGRATION_ACCESS_TOKEN_DEVELOPMENT
  • REACTOR_IO_INTEGRATION_ACCESS_TOKEN_STAGE
  • REACTOR_IO_INTEGRATION_ACCESS_TOKEN (this is the default, and is used for production environment)

Bypass the call to gain an Access Token if you already have the ability to supply it to the command line or through an environment variable. This is useful if you are running this tool in a CI/CD environment. We highly encourage only using an environment variable within a CI/CD environment, as it is more secure than passing it through the command line.

The environment variable should be named one of the following, depending on which Experience Platform Tags environment will be receiving the extension package:

  • REACTOR_IO_INTEGRATION_ACCESS_TOKEN_DEVELOPMENT
  • REACTOR_IO_INTEGRATION_ACCESS_TOKEN_STAGE
  • REACTOR_IO_INTEGRATION_ACCESS_TOKEN (this is the default, and is used for production environment)
--uploadTimeout

The maximum time in seconds to wait for the extension package to be uploaded. If the extension package has not been uploaded within this time, the command will exit with an error. Defaults to 50s.

--verbose

Logs additional information useful for debugging.

Contributing

Contributions are welcomed! Read the Contributing Guide for more information.

To get started:

  1. Install node.js.
  2. Clone the repository.
  3. After navigating into the project directory, install project dependencies by running npm install.

To manually test your changes, first run the following command from the uploader tool directory:

npm link

Then, in a directory where you would like to use the uploader tool, run the following command:

npx @adobe/reactor-uploader

Npx will execute the uploader tool using your locally linked code rather than the code published on the public npm repository.

Scripts

To run tests a single time, run the following command:

npm run test

To run tests continually while developing, run the following command:

npm run test:watch

Licensing

This project is licensed under the Apache V2 License. See LICENSE for more information.