1.0.4 • Published 9 months ago

generator-frida v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Yeoman generator for Softtek Frida Apps

This Yeoman generator provides access to several project templates.

Usage

yo frida [options]

Command Line Options

The following command line options are supported.

--debug

Specifying --debug tells the generator to console log all messages.

  • Type: Boolean
  • Default: False
  • Optional

--local

Specifying --local tells the generator to use localhost services.

  • Type: Boolean
  • Default: False
  • Optional

Example

yo frida --debug --local
     _-----_     ╭──────────────────────────╮
    |       |    │ Welcome to the FRIDA_APP │
    |--(o)--|    │ generator, by Innovation │
   `---------´   │   Devs! Let's create a   │
    ( _´U`_ )    │    project together!     │
    /___A___\   /╰──────────────────────────╯
     |  ~  |
   __'.___.'__
 ´   `  |° ´ Y `

Contributing

Development

Prerequisites

Ensure you have Node.js (version 16.0.0 or later) installed.

Install Yeoman.

npm install -g yo

Initialize the repo

git clone https://github.com/SofttekLabs/generator-frida_app.git
cd generator-frida_app
npm install

Make your desired changes

Build and link your changes

npm run build
npm link
cd ..
yo frida

At this point, yo frida will be running with your custom built generator-frida changes.

Publish to NMP

In order to publish this package to NPM, it is required to have a NPM account.

# Update version
npm version <major|minor|patch>
# Login with npm account
npm login
# Publish package update
npm publish