https://github.com/arqex/amdrequire-test
Testing app for amdrequire
https://github.com/arqex/amdrequire-test
Last synced: 2 months ago
JSON representation
Testing app for amdrequire
- Host: GitHub
- URL: https://github.com/arqex/amdrequire-test
- Owner: arqex
- License: bsd-2-clause
- Created: 2014-05-16T16:05:17.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-19T17:31:01.000Z (about 11 years ago)
- Last Synced: 2025-01-29T20:19:14.600Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 172 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
amdrequire-test
===============
A small website to test the [AMDrequire module](https://github.com/arqex/amdrequire). AMDrequire is NPM package that makes Node understand modules defined in AMD format, the format used by **require.js**.amdrequire-test creates a simple server with just one page. That page requires some files using require.js and print in the console the result.
The same result should be printed in the node console.
## License
Licensed under BSD-2. [See license](https://raw.githubusercontent.com/arqex/amdrequire-test/master/LICENSE)## How to install
Install this test site in three steps:
* Clone this repo
* Install its dependencies
* Run app.js
The same in code
```
git clone https://github.com/arqex/amdrequire-test.git
cd amdrequire-test
npm install
node app.js
```After doing the steps above, open your browser and go to http://localhost:3000 to see the test page and check the console.