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
- Host: GitHub
- URL: https://github.com/ameykuradeak/next-to-flutter
- Owner: AmeyKuradeAK
- License: apache-2.0
- Created: 2025-04-03T16:46:15.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-04T09:44:45.000Z (about 1 year ago)
- Last Synced: 2025-06-05T04:35:16.781Z (about 1 year ago)
- Topics: android-app, flutter, nextjs, vercel
- Language: JavaScript
- Homepage:
- Size: 204 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
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
```