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

bombino-commands

v1.1.3

Published

Adobe CEP utility commands to supercharge dev workflow available through Node scripts or via terminal

Downloads

86

Readme

bombino-commands

Interior panel commands for use within bombino panels

npm install bombino-commands

# Within root of bombino panel
npm run help
npm run switch
npm run update
npm run sign
npm run register

# Within root of Adobe panel if manually installed
bombino-cmd help
bombino-cmd switch
bombino-cmd update
bombino-cmd register
bombino-cmd sign

Commands

npm run help:

  • Prompt a full list of commands of the panel including description and usage

~~npm run typescript~~:

Deprecated! Typescript support is added by default to all templates, awaiting the tsc: watch task on tsconfig.json from the user. For injection into any project use scriptopia instead, to see the results try ovid-editor.

npm run sign:

🚩 This command only works if ZXPSignCmd.exe is located in the parent folder (eg .../cep/extensions/)

  • Duplicate and "stage" an extension folder to a temporary location, removing any hidden files or folders to ensure the certificate doesn't silently fail
  • Generate a temporary certificate
  • Sign the duplicate with the certificate
  • Check the validation of the signed duplicate
  • Place the resulting [name][version].zxp into ./archive of your current panel (and create this folder if it doesn't already exist). If [name][version].zxp already exists, overwrite it
  • Delete the duplicate directory

npm run switch:

🚩 This command only works if the panel was generated by cep-vue-cli, cep-quasar-cli, or bombino

  • Report whether the manifest is currently prepped for PRODUCTION or DEVELOPER context.
  • Prompt the user if they'd like to switch contexts
  • If switching contexts, automatically adjusts manifest.xml for you (no need to manually open it and switch every time)
  • Prompt with contextual information about the next steps once the confirmation is made

npm run update:

  • Report the current version of the panel
  • Prompt the user to update the MAJOR, MINOR, or MICRO tier
  • Auto-suggest the update as the next sequential number but allow any number to be entered
  • Rewrite the version number within manifest.xml and package.json with the updated semantic version

npm run register:

  • Report the current string of text to use for npm run sign certification
  • Prompt the user for COUNTRY, STATE/LOCALE, ORGANIZATION, and COMMON NAME
  • Write a new file (or overwrite previous) containing country, locale, organization and user

Usage

(Assuming bombino default template)

When you first create the template or need to start coding, you need npm run serve to launch the dev server and see your code reflect in the panel. If you want to build and sign an extension, then at any time you do so by running:

  • npm run build - This builds/compiles/gulps everything to the ./dist directory
  • npm run switch - This changes your manifest.xml file to point to the newly created ./dist/index.html compiled in the previous step. Without this step, the ZXP will be pointing to a localhost which doesn't exist
  • npm run sign - This stages, signs, and certifies the panel to create a deliverable ready for any one's use. Note that if you want the certification info to be correct, you must run npm run register at least once to fill out your own data (otherwise dummy data is used).

To continue development:

  • npm run switch - Change the manifest.xml back to the localhost for hot reloading
  • npm run update [OPTIONAL] - To avoid losing or overwriting previous code, it's a good idea to update the version after every npm run sign. This allows us to easily keep track of deliverables and stages, and hand off guaranteed deliverables without mixing them up.
  • npm run serve - Restart the development server and continue coding

A one-step or odd number shift (developer > production or vice versa) requires you restart the host application. A two-step or even number shift (developer > production > developer) requires only that you refresh the panel. This is because manifest.xml only reads once at the host app's launch, so switching it's entry point to change between production and developer will not be detected by the host app.