Skip to content

marcoroth/stimulus-parser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jul 21, 2024
757668b · Jul 21, 2024
Apr 9, 2024
Jun 18, 2024
Feb 13, 2024
Jul 19, 2024
Jul 19, 2024
Dec 26, 2023
Feb 15, 2024
Feb 11, 2024
Jun 3, 2024
Feb 25, 2024
Sep 8, 2023
Feb 25, 2024
Jul 21, 2024
Feb 9, 2024
Jul 15, 2024

Repository files navigation

stimulus-parser

NPM Version NPM Downloads NPM Bundle Size

Installation

To add stimulus-parser to your project, run the following command in your terminal:

yarn add stimulus-parser

Usage

import { Project } from "stimulus-parser"

const project = new Project("/Users/user/path/to/project")

const controllers = project.controllerDefinitions
const controller = controllers[0]

console.log(controller.actionNames)
// => ["connect", "click", "disconnect"]

console.log(controller.targetNames)
// => ["name", "output"]

console.log(controller.classNames)
// => ["loading"]

console.log(controller.values)
// => [{ url: { type: "String", default: "" } }]

Playground

You can inspect parse results on the hosted playground at https://stimulus-parser.hotwire.io.

Development

To run the tests:

yarn install
yarn build
yarn test