Skip to content

Commit b47453e

Browse files
authored
Merge pull request #57 from nanoapi-io/feature/visualizer
visualizer
2 parents 6d3fb12 + 9e34880 commit b47453e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+2403
-1100
lines changed

README.md

+35-86
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,22 @@
22

33
# napi - Next-Level Visual Tooling For API Codebases
44

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.
68

79
![NanoAPI UI Overview](/media/hero-app.png)
810

911
## Features
1012

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.
1214
- **📝 Refactor**: Split your monolith into microservices using the UI and annotations in the code.
1315
- **🏗️ Build**: Generate modular microservices ready for deployment.
1416
- **⚙️ Integrate**: Use CLI commands compatible with all CI/CD workflows for automation.
1517

1618
## Why `napi`?
1719

20+
- Identifies problematic code and potential improvements early.
1821
- Simplifies the process of breaking down monoliths into microservices.
1922
- Improves understanding, maintainability, and robustness at both the architecture and code level.
2023
- 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
7174

7275
For the latest updates, visit our [project board](/projects).
7376

74-
## Installation and Quick Start
77+
## Installation
7578

7679
Ensure you have Node.js (>=18) and npm installed.
7780

7881
https://nodejs.org/en
7982

80-
### Installation
81-
8283
```bash
8384
npm install -g @nanoapi.io/napi
8485
```
8586

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
9388

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.
9590

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:
9792

9893
```bash
99-
napi split configure
94+
napi --help
10095
```
10196

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
10398

104-
```bash
105-
napi split run
106-
```
99+
### `napi init`
107100

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.
109102

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.
113104

114-
For a full list of commands, run:
105+
### `napi audit view`
115106

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.
119108

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.
121110
122-
### Initialize Project
111+
### `napi split annotate openai`
123112

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.
125114

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.
129116
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.
131118
132-
### Launch UI for Split Configuration
119+
### `napi split configure`
133120

134121
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.
135122

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)).
141124
142-
### Split Codebase
125+
### `napi split run`
143126

144127
Split the codebase into smaller, more manageable pieces based on annotations. This is ideal for simplifying large monolithic projects.
145128

146129
> **Important:** This process relies on annotation (see [Split with Annotations](#split-with-annotations)).
147130
148-
```bash
149-
napi split run
150-
```
151-
152-
Note: This command uses the .napirc configuration file.
153-
154131
## Split with Annotations
155132

156133
NanoAPI uses annotations to simplify the process of splitting codebases.
@@ -188,9 +165,11 @@ The process is as follows:
188165
- Annotations from different groups are removed. As well as all their dependents.
189166
- Unused code gets removed.
190167

191-
#### Example
168+
### Example
169+
170+
You can view more examples in the [examples](/examples/)
192171

193-
##### Input
172+
#### Input
194173

195174
```js
196175
// src/api.js
@@ -211,7 +190,7 @@ app.post("/api/v1/orders", (req, res) => {
211190
});
212191
```
213192

214-
#### ➡️ Resulting output
193+
#### Resulting output ➡️
215194

216195
```js
217196
// napi_dist/0/src.js
@@ -236,52 +215,22 @@ app.post("/api/v1/orders", (req, res) => {
236215
});
237216
```
238217

218+
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.
219+
239220
### How to Annotate my codebase
240221

241-
There are three ways to annotate your code:
222+
There are two ways to annotate your code:
242223

243224
#### 1. Manual Annotation
244225

245226
Add annotations directly above relevant code blocks.
246227

247-
#### 2. CLI + AI
228+
#### 2. AI Annotation
248229

249-
Automatically generate annotations for large codebases using the CLI with AI support.
230+
Automatically generate annotations for large codebases using AI.
250231

251232
```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
259-
Here’s an example:
260-
261-
```typescript
262-
// src/api.js
263-
264-
// @nanoapi endpoint:/api/v1/users method:GET group:Users
265-
app.get("/api/v1/users", (req, res) => {
266-
res.send("User data");
267-
});
268-
269-
// @nanoapi endpoint:/api/v1/orders method:POST group:Orders
270-
app.post("/api/v1/orders", (req, res) => {
271-
res.send("Order created");
272-
});
273-
```
274-
275-
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.
282-
283-
```
284-
napi split configure
233+
napi split annotate openai
285234
```
286235

287236
## CI/CD Integration
+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"entrypoint": "src/index.ts",
33
"out": "napi_dist",
4-
"openaiApiKeyFilePath": "../../.OPENAIKEY"
4+
"openaiApiKeyFilePath": "../../.OPENAIKEY",
5+
"audit": {
6+
"targetMaxCharInFile": 5000,
7+
"targetMaxLineInFile": 500,
8+
"targetMaxDepPerFile": 4
9+
}
510
}

examples/node/express/.napirc

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"entrypoint": "src/index.js",
33
"out": "napi_dist",
4-
"openaiApiKeyFilePath": "../../.OPENAIKEY"
4+
"openaiApiKeyFilePath": "../../.OPENAIKEY",
5+
"audit": {
6+
"targetMaxCharInFile": 5000,
7+
"targetMaxLineInFile": 500,
8+
"targetMaxDepPerFile": 4
9+
}
510
}
+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"entrypoint": "src/main.ts",
33
"out": "napi_dist",
4-
"openaiApiKeyFilePath": "../../.OPENAIKEY"
4+
"openaiApiKeyFilePath": "../../.OPENAIKEY",
5+
"audit": {
6+
"targetMaxCharInFile": 5000,
7+
"targetMaxLineInFile": 500,
8+
"targetMaxDepPerFile": 4
9+
}
510
}

examples/python/flask/.napirc

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"entrypoint": "app.py",
33
"out": "napi_dist",
4-
"openaiApiKeyFilePath": "../../.OPENAIKEY"
4+
"openaiApiKeyFilePath": "../../.OPENAIKEY",
5+
"audit": {
6+
"targetMaxCharInFile": 5000,
7+
"targetMaxLineInFile": 500,
8+
"targetMaxDepPerFile": 4
9+
}
510
}

package-lock.json

+5-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@xyflow/react": "^12.3.6",
2222
"react": "^19.0.0",
2323
"react-dom": "^19.0.0",
24-
"react-router-dom": "^7.0.2",
24+
"react-router": "^7.1.1",
2525
"react-toastify": "^11.0.0"
2626
}
2727
}

0 commit comments

Comments
 (0)