You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [Configure Local Environment](#configure-local-environment)
15
+
* [Tests](#tests)
16
+
*[Changelog](#changelog)
17
+
*[License](#license)
18
+
*[Donate](#donate)
19
+
7
20
8
21
## Installation
9
22
@@ -27,7 +40,7 @@ For users who are still using express-mysql-session `0.x`. Changes have been mad
27
40
This module creates a database table to save session data. This data is stored in a MySQL text field with the [utf8mb4](https://dev.mysql.com/doc/refman/5.5/en/charset-unicode-utf8mb4.html) collation - added in [MySQL 5.5.3](https://dev.mysql.com/doc/relnotes/mysql/5.5/en/news-5-5-3.html). The reason for this is to fully support the utf8 character set. If you absolutely must use an older version of MySQL, create your sessions table before initializing the `MySQLStore`.
28
41
29
42
30
-
## How to Use
43
+
## Usage
31
44
32
45
Use with your express session middleware, like this:
33
46
```js
@@ -222,7 +235,7 @@ DB_NAME="session_test"
222
235
```
223
236
224
237
225
-
### Running Tests
238
+
### Tests
226
239
227
240
To run all tests:
228
241
```
@@ -233,3 +246,14 @@ npm test
233
246
## Changelog
234
247
235
248
See [changelog.md](https://github.com/chill117/express-mysql-session/blob/master/changelog.md)
249
+
250
+
251
+
## License
252
+
253
+
This software is [MIT licensed](https://tldrlegal.com/license/mit-license):
254
+
> A short, permissive software license. Basically, you can do whatever you want as long as you include the original copyright and license notice in any copy of the software/source. There are many variations of this license in use.
255
+
256
+
257
+
## Donate
258
+
259
+
This project is free and open-source. If you would like to show your appreciation by making a donation, you can find details about which options are available [here](https://degreesofzero.com/donate.html).
0 commit comments