Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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

```