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

ui5-annotater

v1.0.0

Published

Automatically add JSDoc comments for `sap.ui.define`.

Downloads

3

Readme

UI5 Annotater

Automatically add JSDoc comments for sap.ui.define.

Usage

Open a shell in your projects root folder and execute:

ui5-annotater

You may provide a ui5-annotater.json-file in order to configure the compiler. As of now it only allows you to configure a blacklist for folders, which are not to be edited (useful for ui5 build-dists or Fiori-Elements apps).

{
  "blacklist": ["dist"]
}

In order to make your editor use TypeScript, you also have to add a tsconfig.json:

{
  "compilerOptions": {
      "module": "none",
      "target": "es2018",
      "noEmit": true,
      "checkJs": true,
      "allowJs": true,
      "types": ["@openui5/ts-types"]
  },
  "exclude": ["node_modules"]
}

@openui5/ts-types needs to be installed with npm i --save-dev @openui5/ts-types. You may also use @sapui5/ts-types or specify a UI5 version with npm i --save-dev @openui5/[email protected] (though not all versions are supported).

Motivation

TypeScript can consume JSDoc in order to resolve type declarations. The callback in sap.ui.define takes UI5 libraries as arguments. Having types for those provides a quick way to access API documentation and may help to ensure their correct usage.

UI5 Annotater walks through UI5 projects and automatically adds JSDoc declarations. This allows you to gain TypeScript developer comfort for existing UI5 projects at no cost.

The benefits are inferior to writing TypeScript code, but this is nice for:

  • legacy projects,
  • projects where we don't want an extra build-step and
  • having a taste of TypeScript developer experience.

Example

Here is an untyped UI5 file:

untyped UI5 Code

The correct JSDoc-Declaration (which can be autogenerated with UI5 Annotater) shows that there is a mistake:

Error highlighting

The error message Argument of type '"oneWay"' is not assignable to parameter of type 'BindingMode'. helps us to find the problem and fix it. We need to provide BindingMode as the argument instead of "oneWay". Notice how TypeScript not only highlights the error, but also gives us auto-completion:

Type fix