Socket
Socket
Sign inDemoInstall

fullstack-generator

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fullstack-generator

The Full Stack Generator is a Node.js command-line tool packaged for npm, designed to streamline the initiation of full-stack applications.


Version published
Weekly downloads
6
decreased by-53.85%
Maintainers
1
Install size
5.62 kB
Created
Weekly downloads
 

Readme

Source

Full-Stack Application

The Full Stack Generator is a Node.js command-line tool packaged for npm, designed to streamline the initiation of full-stack applications. This tool automates the creation of a project structure that includes both a React Vite frontend and an ASP.NET Core backend. Users can quickly set up a full-stack development environment by installing the package globally and using a simple command to generate a new full-stack application in their desired directory.

Getting Started

Follow the instructions below to set up and run the full-stack application on your local machine.

Prerequisites

Make sure you have the following installed on your machine:

  • Node.js
  • npm
  • .NET Core SDK

Usage

  1. Install the package globally:

    npm install -g fullstack-generator
    
  2. Generate a new full-stack application:

    generate-fullstack <yourAppName>
    
  3. Follow any additional prompts or instructions during the generation process.

Installation

  1. Clone this repository to your local machine:

    git clone https://github.com/saitnyalcin/fullstack-generator
    
  2. Change into the project directory:

    cd fullstack-generator
    
  3. Run the following command to generate a full stack application:

    generate-fullstack <yourAppName>
    
Frontend (React Vite)
  1. Change into the frontend directory and install the dependencies:

    cd frontend
    
    npm install
    
  2. Run the development server:

    npm run dev
    

    This will start the React development server.

  3. Open your browser and navigate to https://localhost:5173 to view the front end.

Backend (ASP.NET Core)
  1. Change into the backend directory:

    cd backend
    
  2. Run the backend application:

    dotnet run
    

    This will start the ASP.NET Core backend server.

  3. Open your browser and navigate to the application URL that is mentioned in the launch settings to view the backend.

Customization

  • You can customize the frontend by modifying files in the frontend directory.
  • The backend can be customized by modifying files in the backend directory.

Additional Information

For more details about the tools used in this project, refer to the official documentation:

License

This project is licensed under the MIT License.

Keywords

FAQs

Last updated on 05 Jan 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc