An open API service indexing awesome lists of open source software.

https://github.com/ameykuradeak/next-to-flutter

Easily convert your NEXT JS project into FLUTTER Project
https://github.com/ameykuradeak/next-to-flutter

android-app flutter nextjs vercel

Last synced: 3 months ago
JSON representation

Easily convert your NEXT JS project into FLUTTER Project

Awesome Lists containing this project

README

          

# Setting up Backend

```powershell
cd path\to\your\project
mkdir backend
cd backend

# npm init
npm init -y

# Create the Directory Structure
mkdir routes, controllers, utils, middleware
New-Item server.js, .env, README.md -ItemType File

# Create API Route & Controller Files
New-Item routes\convert.js -ItemType File
New-Item controllers\convertController.js -ItemType File

```