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

c2-addon-assistant

v0.6.0

Published

Construct addon development assistant

Downloads

23

Readme

Construct 2 Addon Assistant NPM version

Construct addon development assistant

Installation

$ npm i -g c2-addon-assistant

CLI

Usage: c2addona [options] [command]

Construct addon development assistant


Options:

  -V, --version  output the version number
  -h, --help     output usage information


Commands:

  init <addon_type>      Initialize the addon workspace
  update                 Copy working version to C2. Create/update beta *.c2addon and *.c3addon. Create/update ACE.md.
  release                Save current beta addons as version-marked addons and creates release zip file.
  config                 Starts config prompt
  set-version [version]  Sets the version in info.xml and edittime.js

Usage example

This example creates the "AwesomePlugin" plugin

  1. Create directory named exactly like the plugin you're working on and enter it (c2addona takes addon name from the parent directory)
$ mkdir AwesomePlugin
$ cd AwesomePlugin
  1. Now you're in the root of your plugin workspace and can create the workspace
$ c2addona init plugin
  1. In result of workspace initialization, you'll have the following directory structure
│   release.bat
│   set-version.bat
│   update.bat
│
├───capx
│       AwesomePlugin.capx
│
├───releases
├───source
│   ├───c2addon
│   │   │   info.xml
│   │   │
│   │   └───files
│   │       └───AwesomePlugin
│   │               common.js
│   │               edittime.js
│   │               PluginIcon.ico
│   │               runtime.js
│   │
│   └───c3addon
└───versions
  • source/c2addon - the place with code you will work with
  • source/c3addon - C3 addon source generated automatically by C2C3AddonConverter tool by blackhornet (included)
  • capx/ - place for your example capxes
  • versions/ - contains versioned c2addon and c3addon files after using c2addona release command (or triggering release.bat)
  • releases/ - contains AwesomePlugin_v<version>.zip files generated after using c2addona release command (or triggering release.bat)

Three new files will appear after using c2addona update command (or triggering update.bat):

  • beta-AwesomePlugin.c2addon - current working version of c2 addon
  • beta-AwesomePlugin.c3addon - current working version of c3 addon
  • ACE.md - acetable of current working version generated with c2-addon-parser by Armaldio

Support

Discord: https://discord.gg/ayRypRH

Facebook: https://www.facebook.com/C2C3Plugins

Under MIT license © Toby R