Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/houkanshan/amd-visualization
Visualizer for the requirements of a JS app
https://github.com/houkanshan/amd-visualization
Last synced: 10 days ago
JSON representation
Visualizer for the requirements of a JS app
- Host: GitHub
- URL: https://github.com/houkanshan/amd-visualization
- Owner: houkanshan
- Created: 2013-08-25T08:19:18.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-06-09T21:28:37.000Z (over 2 years ago)
- Last Synced: 2024-12-09T19:53:48.555Z (15 days ago)
- Language: JavaScript
- Homepage:
- Size: 1.42 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Demo: http://houkanshan.github.io/amd-visualization/
Visualization a f2e project which base on AMD format
![](./media/screenshot.png)
## Usage
1. install nodejs
2. install npm package
```bash
make node_modules
```
3. Put some project (F2E part is build with AMD) into the `projects` dir
```javascript
mkdir -p projects; cd projects; git clone https://github.com/jquery/jquery.git
# Or use submodule
```
4. config the Grunt task
```javascript
"amd-depends": {
cwd: 'build',
outPath: 'scripts/dep-trees',
projects: [
{
name: 'jquery',
path: 'projects/jquery/src'
},
]
}```
5. run grunt task
```bash
grunt
```