-
Notifications
You must be signed in to change notification settings - Fork 49
[POC] SQL.js #647
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
stevensJourney
wants to merge
6
commits into
main
Choose a base branch
from
poc-sqljs
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,632
−521
Draft
[POC] SQL.js #647
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ed6befc
wip
stevensJourney 1f4dcb3
wip
stevensJourney 35d50bc
override nodejs imports
stevensJourney b6c8c2a
add patches
stevensJourney bf24e5e
cleanup
stevensJourney c52828e
enable table update hooks. using force!
stevensJourney File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# PowerSync SDK Dev Adapter | ||
|
||
A very small development DB Adapter for PowerSync which uses [SQL.js](https://sql.js.org/#/) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"name": "@powersync/dev-adapter", | ||
"version": "0.0.0", | ||
"private": "true", | ||
"description": "API definitions for JourneyApps PowerSync", | ||
"type": "module", | ||
"main": "dist/bundle.mjs", | ||
"module": "dist/bundle.mjs", | ||
"types": "lib/index.d.ts", | ||
"author": "JOURNEYAPPS", | ||
"license": "Apache-2.0", | ||
"files": [ | ||
"lib", | ||
"dist" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/powersync-ja/powersync-js.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/powersync-ja/powersync-js/issues" | ||
}, | ||
"homepage": "https://docs.powersync.com", | ||
"scripts": { | ||
"build": "tsc -b && rollup -c rollup.config.mjs", | ||
"build:prod": "tsc -b --sourceMap false && && rollup -c rollup.config.mjs --sourceMap false", | ||
"clean": "rm -rf lib dist tsconfig.tsbuildinfo", | ||
"test": "vitest" | ||
}, | ||
"dependencies": { | ||
"@powersync/common": "workspace:^", | ||
"async-mutex": "^0.4.0" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-alias": "^5.1.0", | ||
"@types/sql.js": "^1.4.9", | ||
"rollup": "4.14.3", | ||
"sql.js": "workspace:*" | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import alias from '@rollup/plugin-alias'; | ||
import commonjs from '@rollup/plugin-commonjs'; | ||
import nodeResolve from '@rollup/plugin-node-resolve'; | ||
import path from 'path'; | ||
import { fileURLToPath } from 'url'; | ||
|
||
const __filename = fileURLToPath(import.meta.url); | ||
const __dirname = path.dirname(__filename); | ||
|
||
/** | ||
* @returns {import('rollup').RollupOptions} | ||
*/ | ||
export default (commandLineArgs) => { | ||
const sourceMap = (commandLineArgs.sourceMap || 'true') == 'true'; | ||
|
||
// Clears rollup CLI warning https://github.com/rollup/rollup/issues/2694 | ||
delete commandLineArgs.sourceMap; | ||
|
||
return { | ||
input: 'lib/index.js', | ||
output: { | ||
file: 'dist/bundle.mjs', | ||
format: 'esm', | ||
sourcemap: sourceMap | ||
}, | ||
plugins: [ | ||
nodeResolve({ preferBuiltins: false, browser: true }), | ||
commonjs({}), | ||
alias({ | ||
entries: [ | ||
{ find: 'fs', replacement: path.resolve(__dirname, 'vendored/empty.js') }, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The default Emscripten output contains code like |
||
{ find: 'path', replacement: path.resolve(__dirname, 'vendored/empty.js') }, | ||
{ find: 'crypto', replacement: path.resolve(__dirname, 'vendored/empty.js') } | ||
// add others as needed | ||
] | ||
}) | ||
], | ||
external: ['@powersync/common'] | ||
}; | ||
}; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've put this driver in it's own package for now.
SQL.js is relatively large. About 2Mb. Alternatively we could publish this under a different export e.g.
@powersync/common/driver