I want to make an express site, with something similar to flask like:
@app.route('/<path>')
def main():
return f"This is your path: {path}"
I can't find out how to do this with express though, but I need to for the project I'm making.
I want to make an express site, with something similar to flask like:
@app.route('/<path>')
def main():
return f"This is your path: {path}"
I can't find out how to do this with express though, but I need to for the project I'm making.