You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+35-86
Original file line number
Diff line number
Diff line change
@@ -2,19 +2,22 @@
2
2
3
3
# napi - Next-Level Visual Tooling For API Codebases
4
4
5
-
`napi` is a versatile tool built by NanoAPI and designed to automatically refactor large monolithic codebases into smaller, more manageable microservices. With both a powerful CLI and an intuitive UI, `napi` is compatible with all major CI/CD platforms, allowing seamless integration into your development and deployment pipelines.
5
+
`napi` is a versatile tool built by NanoAPI and designed to automatically refactor large monolithic codebases into smaller, more manageable microservices.
6
+
With both a powerful CLI and an intuitive UI, `napi` is compatible with all major CI/CD platforms, allowing seamless integration into your development and deployment pipelines.
7
+
It also provides a new auditing feature to identify parts of your codebase that could benefit from improvements.
6
8
7
9

8
10
9
11
## Features
10
12
11
-
-**🔍 Inspect**: Analyze your codebase to identify API endpoints, middleware, and other API-specific components.
13
+
-**🚨 Audit**: Pinpoint areas of your code that need refactoring or cleanup.
12
14
-**📝 Refactor**: Split your monolith into microservices using the UI and annotations in the code.
13
15
-**🏗️ Build**: Generate modular microservices ready for deployment.
14
16
-**⚙️ Integrate**: Use CLI commands compatible with all CI/CD workflows for automation.
15
17
16
18
## Why `napi`?
17
19
20
+
- Identifies problematic code and potential improvements early.
18
21
- Simplifies the process of breaking down monoliths into microservices.
19
22
- Improves understanding, maintainability, and robustness at both the architecture and code level.
20
23
- Reduces dependency on consultants or contractors for complex refactoring tasks.
@@ -71,86 +74,60 @@ Before reaching out, check our [FAQ section](#faqs) for answers to common questi
71
74
72
75
For the latest updates, visit our [project board](/projects).
73
76
74
-
## Installation and Quick Start
77
+
## Installation
75
78
76
79
Ensure you have Node.js (>=18) and npm installed.
77
80
78
81
https://nodejs.org/en
79
82
80
-
### Installation
81
-
82
83
```bash
83
84
npm install -g @nanoapi.io/napi
84
85
```
85
86
86
-
### Getting Started
87
-
88
-
```bash
89
-
napi init
90
-
```
91
-
92
-
This will initialize the `.napirc` configuration file, which is essential for managing your project’s paths and settings. All future CLI commands, including code splitting and UI configuration, rely on this file.
87
+
## CLI Usage
93
88
94
-
NanoAPI relies on **annotations** to split your codebase. Annotations mark API endpoints, methods, and groups in your code, guiding how monolithic projects are refactored into microservices.
89
+
`napi` provides a streamlined Command-Line Interface (CLI) to interact with and refactor your software projects quickly and efficiently.
95
90
96
-
> **Important:** Before running `napi split run`, you need to **annotate your codebase**. If you're not familiar with the process, see [Split with Annotations](#split-with-annotations) for a detailed guide and examples.
91
+
For a full list of commands, run:
97
92
98
93
```bash
99
-
napi split configure
94
+
napi --help
100
95
```
101
96
102
-
This will launch the configuration UI. It allows you to configure and preview how your codebase will be split.
97
+
## Overview of all commands
103
98
104
-
```bash
105
-
napi split run
106
-
```
99
+
### `napi init`
107
100
108
-
This command allow you to split your codebase. You can use this in your CI pipeline if needed.
101
+
Initialize the project. This step is required before running any other command.
109
102
110
-
## CLI Usage
111
-
112
-
`napi` provides a streamlined Command-Line Interface (CLI) to interact with and refactor your software projects quickly and efficiently.
103
+
This will create a .napirc configuration file in the project root, storing paths and settings necessary for further commands.
113
104
114
-
For a full list of commands, run:
105
+
### `napi audit view`
115
106
116
-
```bash
117
-
napi --help
118
-
```
107
+
Scan and audit your codebase for potential improvements, vulnerabilities, and maintainability issues. This command opens the NanoAPI UI in your default browser, providing a clear overview of what areas of your code would benefit most from refactoring or cleanup.
119
108
120
-
## Core CLI Commands
109
+
> **Important**: Run napi audit view periodically, especially before major refactoring efforts, to ensure your code is in good shape. It will soon also be possible to integrate that command into CI/CD workflows to catch code-quality issues early.
121
110
122
-
### Initialize Project
111
+
### `napi split annotate openai`
123
112
124
-
Initialize the project and generate the .napirc configuration file. This step is required before running any other command.
113
+
Annotate your API automatically using OpenAI. This is a great way to get started quickly for large or complex codebases.
125
114
126
-
```bash
127
-
napi init
128
-
```
115
+
> **Important:** LLMs can make mistakes. We recommend reviewing AI-generated annotations carefully before running `napi split run` to avoid unexpected behavior in the resulting microservices.
129
116
130
-
This will create a .napirc configuration file in the project root, storing paths and settings necessary for further commands.
117
+
> **Important** We recommand you to read [Split with Annotations](#split-with-annotations) before generating annotations.
131
118
132
-
### Launch UI for Split Configuration
119
+
### `napi split configure`
133
120
134
121
Open the NanoAPI UI in your default browser to configure and organize API endpoints visually. This interactive interface allows you to manage groups, refactor, and preview microservices before the split.
135
122
136
-
```bash
137
-
napi split configure
138
-
```
139
-
140
-
The UI relies on the .napirc configuration file.
123
+
> **Important:** This process relies on annotation (see [Split with Annotations](#split-with-annotations)).
141
124
142
-
### Split Codebase
125
+
### `napi split run`
143
126
144
127
Split the codebase into smaller, more manageable pieces based on annotations. This is ideal for simplifying large monolithic projects.
145
128
146
129
> **Important:** This process relies on annotation (see [Split with Annotations](#split-with-annotations)).
147
130
148
-
```bash
149
-
napi split run
150
-
```
151
-
152
-
Note: This command uses the .napirc configuration file.
153
-
154
131
## Split with Annotations
155
132
156
133
NanoAPI uses annotations to simplify the process of splitting codebases.
@@ -188,9 +165,11 @@ The process is as follows:
188
165
- Annotations from different groups are removed. As well as all their dependents.
189
166
- Unused code gets removed.
190
167
191
-
#### Example
168
+
### Example
169
+
170
+
You can view more examples in the [examples](/examples/)
Running `napi split run` with the following annotations will generate modular services based on these annotations. You'll have a `Users` service and an `Orders` service, each containing the respective endpoint.
Automatically generate annotations for large codebases using the CLI with AI support.
230
+
Automatically generate annotations for large codebases using AI.
250
231
251
232
```bash
252
-
napi split annotate openai --apiKey="sk-**"
253
-
```
254
-
255
-
**Note:** LLMs can make mistakes. We recommend reviewing AI-generated annotations carefully before running `napi split run` to avoid unexpected behavior in the resulting microservices.
256
-
257
-
You can use annotations to specify how to split your code.
258
-
Simply add them above blocks of code that is handling or registering an endpoint
You can view more examples in the [examples](/examples/)
276
-
277
-
Running `napi split run` with the following annotations will generate modular services based on these annotations. You'll have a `Users` service and an `Orders` service, each containing the respective endpoint.
278
-
279
-
## Using the UI
280
-
281
-
The UI allows you to organize and preview your microservices visually before finalizing the split through the CLI.
0 commit comments