npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

openapi-autospec

v1.0.5

Published

Automatically generate an OpenAPI spec through your app's dev environment.

Downloads

38

Readme

OpenAPI AutoSpec

Need last-minute docs? Quickly capture API behavior with a server proxy that automatically generates OpenAPI specifications in real-time from any locally running website or service.

Join Discord

About

Features:

  • Generate OpenAPI 3.0 specifications automatically for any local website or application
  • Capture and document new requests & responses, including headers, bodies, and query parameters
  • Review generated specifications in real-time on your terminal and download them with ease
  • Export your OpenAPI file for sharing
  • Ignores static file URLs: .js, .css, .svg, .png, .jpeg, .ico.

Installation

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js. Node.js 0.10 or higher is required.

Installation steps: npm install command:

$ npm install openapi-autospec

Usage

Start the server, it generates a link for you to use, and then use the new link from the proxy server to catch traffic on a target server. To generate the document you want: visit pages, fill out forms/all the fields or data you wish to track, and perform the actions you want to document from your APIs. For more information on getting documentation from a full-stack server versus both frontend and backend servers - use this reference.

To start the server:

$ npx autospec --portTo PORT --portFrom PORT --filePath openapi.json
  • --portTo choose the port your localhost webserver is running from.
  • --portFrom (optional) is for if another port is in use.
  • --filePath is where you would like to export the spec.

The server provides real-time printouts of the generated OpenAPI specifications. From here:

  • Fill out all fields you wish to be documented for forms
  • Export the OpenAPI specification for external use or sharing (exports where you are in the terminal if you don't specify the --filePath flag)
  • You should find and replace all instances of ‘localhost’ or ‘127.0.0.1:8000’ in the exported doc with your actual website
  • Filter hosts and parameterize paths to fine-tune the documentation properly for server stubs
  • Restart the documentation process at any time to refresh the generated specifications

Roadmap

Want an easy way to automatically build and manage your SDKs, Zapier/Make integrations, Docs, Webhooks, RPA plugins, and custom plugins to marketplaces like Salesforce, Zoom, GSuite all in one spot while getting your app AI-agent ready? Contact us. We can custom tailor this and more with our paid service.

As for the repo:

  • Path parameterization tools
  • HTTPS and OpenAPI 3.1 Specification support
  • Run on GCP, AWS, Azure, Docker, and Kubernetes

What is OpenAPI?

OpenAPI specifications provide a standardized description of an API's expected requests and responses, making APIs easier to understand and integrate with. Governed by the OpenAPI Initiative and the Linux Foundation, they are the modern standard for documenting RESTful APIs.

Community

Join our Discord! We are here to answer questions and help you get the most out of our OpenAPI tool.

Contributing

We welcome community contributions. For guidelines, refer to our CONTRIBUTING.md.

Shoutouts to Awesome API DevTools and OpenAPI Devtools.

Running proxies for multiple servers

Full-Stack Web Frameworks (e.g., Django)

  1. Run your website and note down the port and localhost information. Ex. 127.0.0.1:8000
  2. Run the script and specify the localhost information where traffic should be routed. Ex. npx autospec --portTo 8000.
$ npx autospec --portTo PORT --portFrom PORT--filePath openapi.json
  • The --portTo flag should be followed by the localhost information where you want the traffic to be routed. Ex. "127.0.0.1:8000"
  • The optional --portFrom flag can be used to specify a different port to run the proxy, in case the default port is already in use. The value following this would be the port you want to use for the proxy. Ex. "3000"
  1. Copy the output URL (Ex. localhost:7928) and use your website or application as described above.
  2. Access the newly created file - named with the current timestamp.

Frontend and Backend Separately (e.g., a Node backend and React frontend)

For applications with a separate frontend and backend, run proxies for both.

  1. Run your frontend and note down the host and port information. E.g., 127.0.0.1:3000

  2. Operate your backend on a different port and note the host and port information. E.g., 127.0.0.1:5000 (For detailed guidelines on how to change port info, visit here).

  3. Run the proxy for the frontend, specifying the frontend's host and port information where traffic should be routed. If necessary, you can specify a different port for the proxy to operate from.

$ npx autospec --portTo FRONTEND_PORT --filePath frontend.json
  1. Similarly, run the proxy for the backend, specifying the backend's host and port where the frontend normally sends information.
$ npx autospec --portTo NEW_BACKEND_PORT --portFrom NORMAL_BACKEND_PORT --filePath backend.json

This will initiate the server that listens to network requests from your locally running websites, automatically documenting their API interactions.

Changing backend ports

### 1. Express.js (Node.js)
To change the port for an Express.js application, you can set the port in your application code before starting the server. For example:

```javascript
const express = require('express');
const app = express();
const port = 3001; // Change to your desired port

app.listen(port, () => {
  console.log(`Example app listening at http://localhost:${port}`);
});

2. Django (Python)

For Django, you can specify the port when you run the runserver command from the command line:

python manage.py runserver 8080

This command runs the server on port 8080.

3. Flask (Python)

In Flask, you can specify the port when calling the app.run() method:

from flask import Flask
app = Flask(__name__)

if __name__ == '__main__':
    app.run(port=5001) // Change to your desired port

4. Rails (Ruby)

For a Rails application, you can specify the port with the -p option when starting the server:

rails server -p 4000

This command runs the server on port 4000.

5. Spring Boot (Java)

In Spring Boot, you can specify the server port in the application.properties or application.yml file located in the src/main/resources directory:

server.port=8081

6. ASP.NET Core (C#)

For an ASP.NET Core application, you can specify the port in the launchSettings.json file found in the Properties folder of your project. Alternatively, you can use the --urls command-line argument:

dotnet run --urls="http://localhost:5002"

This command runs the server on port 5002.

7. Laravel (PHP)

In Laravel, you can specify the port with the --port option when serving the application:

php artisan serve --port=8001

This command runs the server on port 8001.

8. Vue.js (Node.js)

For a Vue.js project created with vue-cli, you can specify the port in the vue.config.js file:

module.exports = {
  devServer: {
    port: 8081
  }
}

9. React (Node.js)

For a React application created with create-react-app, you can set the port by modifying the start script in your package.json file, or by setting the PORT environment variable before running the npm start command:

PORT=3001 npm start

10. Angular (Node.js)

For an Angular application, you can specify the port with the --port option when serving the application:

ng serve --port 4201

These are references - Always refer to the official documentation for the most accurate and up-to-date information.