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

@jetbrains/create-youtrack-app

v0.0.3

Published

A scaffolding utility that generates a YouTrack app

Downloads

886

Readme

YouTrack App Generator

Build Status NPM Version

official JetBrains project

Apps in YouTrack let you add new features, tools, and integrations that aren't available out of the box. They can help you customize YouTrack to fit your organization's specific needs, improving your project management, reporting, automation, or integrating with other tools in your software ecosystem. To learn more about app development for the YouTrack platform, please refer to our Developer Portal.

Quick Start

  1. Prepare an empty directory for your app
  2. Run the command npm create @jetbrains/youtrack-app
  3. Follow the prompts provided by the generator

Adding Features to a Generated App

After you have generated an app, you may want to add more features. Add new features quickly with one of these commands:

| Action | Command | | --- | --- | | Add a settings declaration | npx @jetbrains/create-youtrack-app settings init | | Add one or more properties to the setting scheme created using the command listed above | npx @jetbrains/create-youtrack-app settings add | | Add another widget | npx @jetbrains/create-youtrack-app widget add | | Declare an extension property | npx @jetbrains/create-youtrack-app extension-property add | | Add an HTTP handler | npx @jetbrains/create-youtrack-app http-handler add | | View a list of available commands | npx @jetbrains/create-youtrack-app --help |

Сontributing

To test locally, run one of the package.json scripts like npm run widget. This generator uses Hygen under the hood.

Run npm test to check basic generation workflow.

Caveats

While Hygen is a powerful tool for generating files, it isn't ideal for working with JSON files. This means JSON manipulation can be a challenge. To address this issue, we have added a injectJsCallback.js file. This file contains a helper function that can be used to create custom JS actions instead of simply rendering files. An example that demonstrates the use of this function can be found in the _templates/settings/init/index.js file.