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
Modernize README and remove binary build infrastructure
- Remove AWS dependencies (aws-sdk, @yamlize/cli) from package.json
- Update README with WASM-first messaging and TypeScript examples
- Replace CommonJS examples with modern TypeScript imports
- Add comprehensive TypeScript API documentation with types
- Update CI badge to point to new modular workflow
- Remove binary build references and modernize documentation
Co-Authored-By: Dan Lynch <[email protected]>
The real PostgreSQL parser for Node.js, powered by **WebAssembly (WASM)**for true cross-platform compatibility.
24
18
25
-
Primarily used for the node.js parser and deparser [pgsql-parser](https://github.com/pyramation/pgsql-parser)
19
+
A WASM-based PostgreSQL query parser that provides the same functionality as the native PostgreSQL parser without requiring native compilation or platform-specific binaries. Primarily used for the node.js parser and deparser [pgsql-parser](https://github.com/pyramation/pgsql-parser).
Parses the contents of a PL/PGSql function, from a `CREATE FUNCTION` declaration, and returns a Promise for the parse tree (or returns the parse tree directly in the sync version). May reject with/throw a parse error.
216
+
**Note:** The return value is an array, as multiple queries may be provided in a single string (semicolon-delimited, as PostgreSQL expects).
0 commit comments