Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
cfb8a77a
Commit
cfb8a77a
authored
Aug 22, 2018
by
Richard Littauer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: Edit modules list, add README and lint to analyzer
parent
c7d02259
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
34 additions
and
3 deletions
+34
-3
README.md
README.md
+6
-2
README.md
remix-analyzer/README.md
+26
-0
package.json
remix-analyzer/package.json
+2
-1
No files found.
README.md
View file @
cfb8a77a
...
@@ -40,11 +40,15 @@ The debugger itself contains several controls that allow stepping over the trace
...
@@ -40,11 +40,15 @@ The debugger itself contains several controls that allow stepping over the trace
## <a name="modules"></a>Remix Modules
## <a name="modules"></a>Remix Modules
Remix is built out of
3
different modules:
Remix is built out of
several
different modules:
+
[
`remix-analyzer`
](
remix-analyzer/README.md
)
+
[
`remix-solidity`
](
remix-solidity/README.md
)
provides Solidity analysis and decoding functions.
+
[
`remix-solidity`
](
remix-solidity/README.md
)
provides Solidity analysis and decoding functions.
+
[
`remix-lib`
](
remix-lib/README.md
)
+
[
`remix-lib`
](
remix-lib/README.md
)
+
[
`remix-debug`
](
remix-debugger/README.md
)
contains the debugger.
+
[
`remix-debug`
](
remix-debugger/README.md
)
is now
*deprecated*
. It contains the debugger.
+
[
`remix-tests`
](
remix-tests/README.md
)
contains our tests.
Each generally has their own npm package and test suite, as well as basic documentation.
## Contributing
## Contributing
...
...
remix-analyzer/README.md
0 → 100644
View file @
cfb8a77a
# Remix Analyzer
## Install
```
sh
npm i remix-analyzer
```
## Contribute
We need some better documentation. Besides that, we are always open to new features or bug reports. Open an issue or a pull request.
### Tests
Make sure that you add test cases.
```
sh
npm run
test
```
The code style should conform to standard; make sure to your lint your code before submitting a PR.
## License
MIT (c) 2018 Remix Team
remix-analyzer/package.json
View file @
cfb8a77a
...
@@ -27,7 +27,8 @@
...
@@ -27,7 +27,8 @@
"tape"
:
"^4.6.0"
"tape"
:
"^4.6.0"
},
},
"scripts"
:
{
"scripts"
:
{
"test"
:
"standard && tape ./test/tests.js"
"lint"
:
"standard"
,
"test"
:
"lint && tape ./test/tests.js"
},
},
"standard"
:
{
"standard"
:
{
"ignore"
:
[
"ignore"
:
[
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment