|
Play Framework/Scala example source code file (JavaScriptRouterGenerator.scala)
The JavaScriptRouterGenerator.scala Play Framework example source code
package utils
import java.io._
object JavaScriptRouterGenerator extends App {
import controllers.routes.javascript._
val jsFile = play.api.Routes.javascriptRouter("jsRoutes", None, "localhost",
Application.index,
Application.post,
Application.withParam,
Application.takeBool
).body
// Add module exports for node
val jsModule = jsFile +
"""
|
|module.exports = jsRoutes
""".stripMargin
val file = new File(args(0))
file.getParentFile.mkdirs()
val writer = new FileWriter(file)
writer.write(jsModule)
writer.close()
}
Other Play Framework source code examplesHere is a short list of links related to this Play Framework JavaScriptRouterGenerator.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.