This repository has been archived by the owner on Jan 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
71 additions
and
110 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,21 +1 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018 Bonggyun Lee | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
Apache 2.0 License |
This file contains 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# dynamob | ||
# dynamon | ||
|
||
Dynamo is GUI client for DynamoDB | ||
Dynamon is GUI client for DynamoDB |
This file contains 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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"name": "dynamo", | ||
"name": "dynamon", | ||
"version": "0.1.0", | ||
"description": "dynamodb client ui gui local", | ||
"repository": "https://github.com/deptno/dynamo.git", | ||
"description": "dynamodb GUI client", | ||
"repository": "https://github.com/deptno/dynamon.git", | ||
"author": "Bonggyun Lee <[email protected]>", | ||
"license": "MIT", | ||
"license": "Apache 2.0", | ||
"private": true, | ||
"workspaces": ["packages/*"], | ||
"scripts": { | ||
"dev": "yarn workspace dynamo-fe dev & yarn workspace dynamo dev", | ||
"pack": "yarn workspace dynamo-fe build && yarn workspace dynamo pack", | ||
"release": "yarn workspace dynamo-fe build && yarn workspace dynamo dist", | ||
"dev": "yarn workspace dynamon-fe dev & yarn workspace dynamon dev", | ||
"pack": "yarn workspace dynamon-fe build && yarn workspace dynamon pack", | ||
"release": "yarn workspace dynamon-fe build && yarn workspace dynamon dist", | ||
"precommit": "lint-staged" | ||
}, | ||
"lint-staged": { | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
packages/dynamo-engine/README.md → packages/dynamon-engine/README.md
This file contains 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# dynamob-engine | ||
# dynamon-engine | ||
|
||
aws-sdk wrapper |
This file contains 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,21 @@ | ||
import {DynamonDbTable, DynamonEngine} from '../index' | ||
|
||
describe('dynamon engine', () => { | ||
// const engine = new DynamonEngine() | ||
// let tables: DynamonDbTable[] | ||
// it('tables()', async done => { | ||
// tables = await engine.tables() | ||
// console.log(JSON.stringify(tables, null, 2)) | ||
// expect(tables).toBeTruthy() | ||
// done() | ||
// }) | ||
// | ||
// describe('dynamo db table', () => { | ||
// it('tables()', async done => { | ||
// const [table] = tables | ||
// const data = await table.scan() | ||
// console.log(data) | ||
// done() | ||
// }) | ||
// }) | ||
}) |
This file contains 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 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "dynamo-engine", | ||
"name": "dynamon-engine", | ||
"version": "0.1.0", | ||
"description": "dynamodb client ui gui local", | ||
"description": "dynamodb wrapper", | ||
"main": "index.js", | ||
"repository": "https://github.com/deptno/dynamo.git", | ||
"repository": "https://github.com/deptno/dynamon.git", | ||
"author": "Bonggyun Lee <[email protected]>", | ||
"license": "MIT", | ||
"private": false, | ||
|
@@ -23,28 +23,12 @@ | |
"aws-sdk": "^2.218.1" | ||
}, | ||
"jest": { | ||
"moduleFileExtensions": [ | ||
"ts", | ||
"tsx", | ||
"js" | ||
], | ||
"moduleFileExtensions": ["ts", "tsx", "js"], | ||
"transform": { | ||
"^.+\\.tsx?$": "ts-jest" | ||
}, | ||
"testMatch": [ | ||
"**/*.(test|spec).(ts|tsx)" | ||
], | ||
"coveragePathIgnorePatterns": [ | ||
"/node_modules/", | ||
"/out/", | ||
"/dist/", | ||
"/.*/" | ||
], | ||
"coverageReporters": [ | ||
"json", | ||
"lcov", | ||
"text", | ||
"text-summary" | ||
] | ||
"testMatch": ["**/*.(test|spec).(ts|tsx)"], | ||
"coveragePathIgnorePatterns": ["/node_modules/", "/out/", "/dist/", "/.*/"], | ||
"coverageReporters": ["json", "lcov", "text", "text-summary"] | ||
} | ||
} |
File renamed without changes.
This file contains 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 @@ | ||
# dynamon-fe | ||
|
||
Dynamon App build on React & Parcel |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "dynamo-fe", | ||
"name": "dynamon-fe", | ||
"version": "0.1.0", | ||
"description": "dynamodb client ui gui local", | ||
"description": "dynamon frontend", | ||
"main": "index.js", | ||
"repository": "https://github.com/deptno/dynamo.git", | ||
"repository": "https://github.com/deptno/dynamon.git", | ||
"author": "Bonggyun Lee <[email protected]>", | ||
"license": "MIT", | ||
"private": false, | ||
|
@@ -16,7 +16,7 @@ | |
}, | ||
"scripts": { | ||
"dev": "parcel index.html --no-autoinstall", | ||
"build": "parcel build index.html --public-url ./ --out-dir ../dynamo/client" | ||
"build": "parcel build index.html --public-url ./ --out-dir ../dynamon/client" | ||
}, | ||
"dependencies": { | ||
"@blueprintjs/core": "^2.0.1", | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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 @@ | ||
# dynamon | ||
|
||
Dynamon is GUI client for DynamoDB |
File renamed without changes.
This file contains 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 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 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "dynamo", | ||
"name": "dynamon", | ||
"version": "0.1.0", | ||
"description": "dynamodb client ui gui local", | ||
"description": "dynamodb GUI client", | ||
"main": "index.js", | ||
"repository": "https://github.com/deptno/dynamo.git", | ||
"repository": "https://github.com/deptno/dynamon.git", | ||
"author": "Bonggyun Lee <[email protected]>", | ||
"license": "MIT", | ||
"private": false, | ||
|
@@ -22,7 +22,7 @@ | |
}, | ||
"dependencies": { | ||
"detect-port": "^1.2.2", | ||
"dynamo-engine": "*", | ||
"dynamon-engine": "*", | ||
"dynamodb-localhost": "^0.0.5", | ||
"mkdirp": "^0.5.1" | ||
} | ||
|
File renamed without changes.
File renamed without changes.
This file contains 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"name": "react-deep-json-table", | ||
"version": "0.1.0", | ||
"description": "dynamodb client ui gui local", | ||
"description": "deep json table", | ||
"main": "dist/index.js", | ||
"repository": "https://github.com/deptno/dynamo.git", | ||
"repository": "https://github.com/deptno/dynamon.git", | ||
"author": "Bonggyun Lee <[email protected]>", | ||
"license": "MIT", | ||
"private": false, | ||
|