ValeriyDP

Results 4 issues of ValeriyDP

``` server/lib/logger.ts(3,33): error TS2307: Cannot find module 'express-winston'. ``` Solved with `const expressWinston = require('express-winston');` But I believe that this has to be added to http://definitelytyped.org/ Thanks

Could we use assertions for routing? Similar to https://symfony.com/doc/4.1/routing.html#advanced-routing-example Thanks ```yaml # config/routes.yaml blog_list: path: /blog/{page} controller: App\Controller\BlogController::list requirements: page: '\d+' ```

Dead links under ORM - https://mehdihadeli.github.io/awesome-go-education/database/orm/orm.md - https://mehdihadeli.github.io/awesome-go-education/database/orm/gorm.md Source of changes https://github.com/mehdihadeli/awesome-go-education/commit/0077772e07749fdf803a381ac34e5d71a641125f#diff-c41f61e4dea833a56394a044c215aed0deae6732ea552ecec54faacae241ef2d directory `realational` should be renamed to `relational`

Node v 8 code sample ``` wn.fetchSynset( 'ffff', function(err, synsetArray) { if(err) console.error(err, synsetArray); else wn.print(synsetArray); }); ``` Found issue, it is placed here https://github.com/Planeshifter/node-wordnet-magic/blob/master/lib/index_old.js#L49-L53 sqlite3's method `each` gets 4...