sidorares / sidorares/node-mysql2
SyntaxError: Unexpected token ':' when JSON.stringify is overridden
Open
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 4.4k
- Forks
- 680
- Avg merge
- 9h 7m
- Merged PRs (30d)
- 59
Description
Without overriding JSON.stringify, the query works fine. When JSON.stringify is overridden, I get SyntaxError: Unexpected token ':'
This is the entire code.
const mysql = require('mysql2');
const originalStringify = JSON.stringify;
/* without this override there is no error */
JSON.stringify = function (obj, replacer = null, space = 2) {
return originalStringify(obj, replacer, space);
};
const connection = mysql.createConnection({
host: 'localhost',
port: 8889,
user: 'root',
password: 'root',
database: 'flashcards'
});
try {
connection.connect();
connection.query('SELECT version()', function (error, results, fields) {
if (error) throw error;
console.log("result OK");
});
} finally {
connection.end();
}
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by running the complete Node.js reproduction with mysql2, including the JSON.stringify override, and inspect the connection and query path around connection.connect(), connection.query(), and connection.end(). Done means the cause of the reported SyntaxError is identified and the query no longer fails, or the incompatibility is clearly documented.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- mysql, node.js
- Domain
- backend, database
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 25/100