Scala Play React Seed
Use play framework to develop the web application backend/services and frontend using React Create App, all in a totally integrated workflow and single unified console. This approach will deliver perfect development experience without CORS hassle.
Read more @ http://bit.ly/2A1AzEq
Version Summary
How to use it?
Prerequisites
Let's get started,
-
Fork or clone this repository.
-
Used any of the following SBT commands which will intern trigger frontend associated npm scripts.
sbt clean # Clean existing build artifacts
sbt stage # Build your application from your projectβs source directory
sbt run # Run both backend and frontend builds in watch mode
sbt dist # Build both backend and frontend sources into a single distribution artifact
sbt test # Run both backend and frontend unit tests
- This seed is not using scala play views. All the views and frontend associated routes are served via React code base under
ui
directory.
Complete Directory Layout
βββ /app/ # The backend (scala play) sources (controllers, models, services)
β βββ /controllers/ # Backend controllers
β βββ FrontendController.scala # Asset controller wrapper serving frontend assets and artifacts
βββ /conf/ # Configurations files and other non-compiled resources (on classpath)
β βββ application.conf # Play application configuratiion file.
β βββ logback.xml # Logging configuration
β βββ routes # Routes definition file
βββ /logs/ # Log directory
β βββ application.log # Application log file
βββ /project/ # Contains project build configuration and plugins
β βββ FrontendCommands.scala # Frontend build command mapping configuration
β βββ FrontendRunHook.scala # Forntend build PlayRunHook (trigger frontend serve on sbt run)
β βββ build.properties # Marker for sbt project
β βββ plugins.sbt # SBT plugins declaration
βββ /public/ # Frontend build artifacts will be copied to this directory
βββ /target/ # Play project build artifact directory
β βββ /universal/ # Application packaging
β βββ /web/ # Compiled web assets
βββ /test/ # Contains unit tests of backend sources
βββ /ui/ # React frontend source (based on Create React App)
β βββ /public/ # Contains the index.html file
β βββ /node_modules/ # 3rd-party frontend libraries and utilities
β βββ /src/ # The frontend source codebase of the application
β βββ .editorconfig # Define and maintain consistent coding styles between different editors and IDEs
β βββ .gitignore # Contains ui files to be ignored when pushing to git
β βββ package.json # NPM configuration of frontend source
β βββ README.md # Contains all user guide details for the ui
β βββ yarn.lock # Yarn lock file
βββ .gitignore # Contains files to be ignored when pushing to git
βββ build.sbt # Play application SBT configuration
βββ LICENSE # License Agreement file
βββ README.md # Application user guide
βββ ui-build.sbt # SBT command hooks associated with frontend npm scripts
What is new in here?
FrontendCommands.scala
- Frontend build command mapping configuration.
βββ /project/
β βββ FrontendCommands.scala
FrontendRunHook.scala
- PlayRunHook implementation to trigger
npm run start
onsbt run
.
βββ /project/
β βββ FrontendRunHook.scala
FrontendController.scala
- Asset controller wrapper serving frontend assets and artifacts.
βββ /app/
β βββ /controllers/
β βββ FrontendController.scala
ui-build.sbt
- This file contains the build task hooks to trigger frontend npm scripts on sbt command execution.
npm run commands
- New and modified npm scripts of Create React App generated package.json.
- Check UI README.md to see all available frontend build tasks.
βββ /ui/
β βββ package.json
Routes
βββ /conf/
β βββ routes
- The following route configuration map index.html to entry route (root). This should be placed as the initial route.
GET / controllers.FrontendController.index()
- All API routes should be prefixed with API prefix defined under
application.conf
(Default prefixapiPrefix = "api"
)
Example API route:
GET /api/summary controllers.HomeController.appSummary
- The following route is being used to serve frontend associated build artifacts (css, js) and static assets (images, etc.). This should be placed as the final route.
GET /*file controllers.FrontendController.assetOrDefault(file)
Note: On production build all the front end React build artifacts will be copied to the public
folder.
Can be used to implement any front end/ui build!
- Simply replace the ui directory with the build of your choice
- Make output directory ROOT/public/
- Implement a proxy to localhost:9000
Looking for some other frontend framework or language choice
- Play Java React Seed
- Play Scala Angular Seed
- Play Java Angular Seed
- Scala Play Vuejs Seed by Duncan Nevin
- Java Play Vuejs Seed by Duncan Nevin
License
This software is licensed under the MIT license