Skip to content

Commit

Permalink
feat(JavaScript): upgrade Fiber (#6860)
Browse files Browse the repository at this point in the history
* feat(javascript): add Fiber

* chore: update @ionited/fiber

* Update javascript/fiber/config.yaml

Co-authored-by: Marwan Rabbâa <[email protected]>

* feat(JavaScript): upgrade Fiber

---------

Co-authored-by: Marwan Rabbâa <[email protected]>
  • Loading branch information
gabrielcursino and waghanza authored Oct 26, 2023
1 parent 9f5beb6 commit 6392928
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion javascript/fiber/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ app.get('/', function (req, res) {
});

app.get('/user/:id', function (req, res) {
res.send(req.params.id);
res.send(req.params().id);
});

app.post('/user', function (req, res) {
Expand Down
2 changes: 1 addition & 1 deletion javascript/fiber/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
framework:
website: ionited.io
version: 0.3
version: 0.4
engines:
- uwebsockets
2 changes: 1 addition & 1 deletion javascript/fiber/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"@ionited/fiber": "~0.3.0"
"@ionited/fiber": "~0.4.0"
}
}

0 comments on commit 6392928

Please sign in to comment.