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

nextjs-server-action-tester

v1.0.2

Published

A development tool for scanning and testing server actions in Next.js projects.

Downloads

193

Readme

nextjs-server-action-tester

nextjs-server-action-tester is a tool for scanning and testing server actions in Next.js projects. It automates setup, generates metadata, and provides a UI to list, search, and execute server functions. It supports both JavaScript and TypeScript, with customizable configurations and light/dark mode options.

nextjs-server-action-tester

Video Demonstration 🎥

Watch the video demonstration of the nextjs-server-action-tester tool to see how it works in action:

Next.js Server Action Tester Video

Table of Contents 📑

Installation ⚙️

To install the package, run the following command in your project directory:

npm install nextjs-server-action-tester

Usage 🚀

After installation, you can use the actions-scan command to scan and test server actions in your Next.js project:

npx actions-scan

This command will set up the necessary files for testing server actions and initiate the scanning process.

Setup Process 🛠️

The setup process involves several steps:

Next.js Version Check

  • Verifies that the project is using Next.js version 14 or above. This ensures compatibility with the features required by the tool.
  • If the version is below 14, the setup process exits with an error message indicating that the library cannot be used with older versions.

Project Structure Detection

  • Determines if the project uses a src folder. This affects file locations and path resolutions.
  • Checks if the project is using TypeScript or JavaScript. The configuration setup will differ based on this.

Configuration File Setup

  • For TypeScript Projects: Updates path aliases in tsconfig.json to ensure proper resolution of imports and exports.
  • For JavaScript Projects:
    • If jsconfig.json exists: Updates path aliases.
    • If jsconfig.json does not exist: Creates a new jsconfig.json with the necessary path aliases.

File Copying

  • Copies the appropriate page and API files to the project directory based on the detected setup (TypeScript/JavaScript and the presence of the src folder).
  • Replaces placeholders in the copied files with values from the configuration, such as the API name and actions path filename.

Git Ignore Update

  • Adds relevant files and paths to the .gitignore file under the # nextjs-server-action-tester comment to ensure they are excluded from version control.

Configuration 🔧

Create a nextServerActionTesterConfig.js file in the root of your project to customize:

const config = {
	apiName: "list-actions",
	pageName: "list-actions",
	actionsPathFileName: "server-actions",
	excludeDirs: ['node_modules', '.git', '.next'],
	maxDepth: 10,
}

module.exports = config
  • apiName: Name of the API route for handling actions.
  • pageName: Name of the page where actions are listed and tested. e.g., http://localhost:3000/list-actions.
  • actionsPathFileName: Name of the JSON file created in the public directory containing metadata.
  • excludeDirs: List of directories to exclude from scanning.
  • maxDepth: Maximum depth for scanning the project directory (default is 10).

Scanning 🔍

  1. The scanning process in the nextjs-server-action-tester tool utilizes @babel/parser and @babel/traverse to parse JavaScript/TypeScript code into an Abstract Syntax Tree (AST) and analyze it for functions marked with the 'use server' directive.
  2. The tool reads the project setup, generates ASTs for relevant files, and identifies server actions by traversing the AST to extract function names and types.
  3. It then compiles metadata about these actions into a JSON file and creates an aggregator file with import and export statements for easier management.
  4. The result is a comprehensive setup that documents server actions and prepares them for testing.

Flow of Execution 🔄

  1. Run npx actions-scan: Triggers the scanning process.
  2. Setup Phase: Checks the Next.js version, project structure, and creates or updates configuration files as needed.
  3. File Management: Copies necessary files and updates the .gitignore file.
  4. Scan and Metadata Generation: Scans the codebase for server actions and generates a metadata JSON file.
  5. UI Setup: Adds a new page and API route for interacting with the server actions.

UI Functionality 💻

The UI provided by the tool offers:

  • Listing Server Actions: View all detected server actions.
  • Search Functionality: Find specific server actions.
  • Execution of Server Functions: Run server functions with parameters and view results.
  • Parameter Input: Enter parameters for server functions.
  • Light and Dark Mode: Switch between light and dark themes.
  • Result Display: Show the output of executed server actions.

Generated Files and Changes 📂

  • Configuration Files: tsconfig.json or jsconfig.json updated or created.
  • Page and API Files: Copied to your project with necessary modifications.
  • Metadata JSON File: Generated in the public directory.
  • Git Ignore Updates: New entries added under # nextjs-server-action-tester.

Contributing 🤝

Contributions are welcome! Please feel free to submit a Pull Request with improvements or bug fixes.

License 📜

This project is licensed under the ISC License.

For more detailed information or specific use cases, please refer to the GitHub repository or contact the maintainer.