Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

angumine

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angumine

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Angumine

Angumine is a simple command-line utility to parse AngularJS HTML templates for ng-* and handlebars ({{...}}) references to data that builds a dot-notated tree using loop structures found in the template, i.e. if the template contains:

{{something.here}}
<beautifullist ng-class="ngClassesAreIgnored" ng-repeat="project in projects">
  <documents ng-repeat="paper in project.papers">
    <docbody ng-show="paper.visible">
      {{paper.text}}
      {{another.thing}}
    </docbody>
  </documents>
</beautifullist>

The output would be:

$ angumine test.html 

---------
test.html
---------

something.here
[projects]project.[project.papers]paper.visible
[projects]project.[project.papers]paper.text
another.thing

Installation

gem install angumine

Usage

angumine file_or_dir_1 file_or_dir_2 file_or_dir_3

Or

angumine -r file_or_dir_to_search_recursively_1 file_or_dir_to_search_recursively_2

e.g.

angumine -r app/assets/templates/

License

Copyright (c) 2013 Gary S. Weaver, released under the MIT license.

FAQs

Package last updated on 16 Oct 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc