We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a2e5cc commit a97c150Copy full SHA for a97c150
docs/guides/6to7guide.md
@@ -31,6 +31,14 @@ Strict routing is the new default.
31
Use `ignoreTrailingSlash: true` server option if you don't want to differentiate
32
them from each other.
33
34
+### Path must to start with `/`
35
+
36
+In restify 7.x path must start with a `/`.
37
+For example `server.get('foo')` is invalid, change it to `server.get('/foo')`.
38
39
+If you use [enroute](https://github.com/restify/enroute) be sure
40
+that you updated it to the latest version.
41
42
### Different `RegExp` usage in router path and wildcards
43
44
restify's new router backend
0 commit comments