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

apex-template

v1.2.0

Published

Use the Apex IDL as input to Handlebars templates for code generation, documentation, etc

Downloads

4

Readme

apex-template: Apex Handlebars Templater

Deprecated

Any functionality in this package should be rolled up into core apex code generators. This package is still functional but should not receive much maintenance.

About

This library and CLI utility allows you to pass serialized Apex to a Handlebars template for code generation, automatic documentation, linking, etc.

Installation

$ npm install apex-template

Usage

On the command line:

$ apex-template

In JavaScript

const { render } = require('apex-template');

const apexSrc = // string of Apex
const templateSrc = // string of Handlebars template source

const renderedTemplate = render(apexSrc, templateSrc);

console.log(renderedTemplate);

Data format

Use the Apex validator's AST view to visualize the structure of the Apex data.

Notes: Minor AST changes

This utility uplevels the first namespace and interface it finds to the tree's root so you can more easily access them in your templates.

Partials

Register all .hbs files in a directory as partials by using the registerPartials() function or by passing a directory to the CLI via -p or --partials

import { registerPartials } from 'apex-template';

await registerPartials('partialsdir');

Helpers

This library includes two helpers to help templating from the command line:

isKind

A conditional block that tests the kind of Apex node

{{#isKind 'TypeDefinition'}}
  # Type:
  {{name.value}}
{{/isKind}}

join

The join maps over ever element with the passed block and joins them with the supplied separator.

({{#join parameters ', '}}{{name}}:{{type}}{{/join}})

Given parameters of [{name: 'someName', type:'someValue'},{name: 'someName2', type:'someValue2'}], the join above would output:

(someName: someValue, someName2: someValue2)

camelCase

capitalCase

constantCase

dotCase

headerCase

noCase

paramCase

pascalCase

pathCase

sentenceCase

snakeCase

Case-related helpers that expose functions from change-case-all e.g.

{{pascalCase context}}

upperCase

lowerCase

Uppercase & lowercase helpers that transform an entire string

{{upperCase context}}

import block

Import another apex file

{{#import 'other/file.apex'}}
  # Hello from
  {{namespace.name.value}}
{{/import}}

dirname

Exposes Node.js's path.dirname.

{{dirname value}}

basename

Exposes Node.js's path.basename.

{{basename value}}

replace

Simple string replacement helper.

{{replace original '.js' ''}}

switch/case/default

An implementation of switch/case statements as handlebars helpers.

{{#switch kind}}
  {{#case 'A'}}
    First block
  {{/case}}
  {{#case 'B'}}
    Second block
  {{/case}}
  {{#default}}
    Default block
  {{/default}}
{{/switch}}

eachWithName

A block that iterates over every object in a passed list that has a name property equal to the passed name. Used to iterate over fields or definitions to find a specific name

{{#eachWithName definitions 'MyType'}}
  Some description specific to MyType
{{/eachWithName}}

codegen-type

This is a partial code generator that turns a Apex type node (i.e. from a field or argument, not a TypeDefinition) back into a Apex string.

{{#each fields}}
  {{name.value}} : {{codegen-type type}}
{{/each}}