molsson

Results 30 comments of molsson

I don't think anyone has created TS definitions yet, a PR would be great

What approach are you planning; rewrite in TS and generate .d.ts files on build, or manually writing the .d.ts files?

FWIW, I pushed the commit "e9880c8" to master now, it upgrades all dependencies to the latest versions and re-pins chromedriver/geckodriver to fresh versions. To run the tests you must have...

What are the steps to reproduce this issue? What node version did you use? Can you post the script that you are running?

@chill117 What if the "user_id" property was optional and such a column was only created and set by express-mysql-session if it was defined in the columnNames dict?

If express-mysql-session creates the table and the optional columnNames.user_id is defined, then it should create a column field without a foreign key. This would make it possible for me to...

I'm still interested in this feature. The field that passport puts into "data" for me is called "user" but the database column I have is called "user_id". Ideally, I think...

The things I would like are: * fast queries (i.e no JSON lookup) * foreign key from session table pointing to user table * user_id on session should be NOT...

My first workaround attempt was to run "res.end()" so that express-mysql-session creates the session in the db. Then I used an UPDATE query to fill in the user_id column. One...

There is a tool to do quality checking on npm packages, i.e: ```git clone https://github.com/tasti/react-linkify.git cd react-linkify npm install @skypack/package-check --dev npx package-check ``` This tool reports that react-linkify lacks...