Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/raviqqe/rnm

Yet another codemod alternative
https://github.com/raviqqe/rnm

Last synced: 11 days ago
JSON representation

Yet another codemod alternative

Lists

README

        

# rnm

[![GitHub Action](https://img.shields.io/github/actions/workflow/status/raviqqe/rnm/test.yaml?branch=main&style=flat-square)](https://github.com/raviqqe/rnm/actions)
[![Codecov](https://img.shields.io/codecov/c/github/raviqqe/rnm.svg?style=flat-square)](https://codecov.io/gh/raviqqe/rnm)
[![License](https://img.shields.io/github/license/raviqqe/rnm.svg?style=flat-square)](LICENSE)

Yet another [`fastmod`](https://github.com/facebookincubator/fastmod) alternative.

Replace all occurrences of a name to another name in your code!

## Features

- Support for different case styles
- See `rnm --help` to list them all.
- Automatic pluralization
- File renaming
- Massive speed

## Install

```sh
GO111MODULE=on go get -u github.com/raviqqe/rnm
```

## Usage

```sh
rnm 'foo bar' 'baz qux'
```

For more information, see `rnm --help`.

## Examples

Given a file named `foo_bar.go`:

```go
const FOO_BAR = 42

type FooBar struct {
fooBar int
}

func (f FooBar) fooBar() {
println("foo bar")
}
```

When you run `rnm 'foo bar' 'baz qux'`, you would see a file named `baz_qux.go` with contents:

```go
const BAZ_QUX = 42

type BazQux struct {
bazQux int
}

func (f BazQux) bazQux() {
println("baz qux")
}
```

## License

[MIT](LICENSE)