Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Very small amount of documentation added. #1877

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions readme.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,14 @@ $ npm install derequire
$ browserify main.js --standalone Foo | derequire > bundle.js
```

```html
<script src="bundle.js"></script>
<script type="text/javascript">
// Now you can address `Foo` by name in your HTML document
Foo.bar();
</script>
```

`opts.insertGlobalVars` will be passed to
[insert-module-globals](https://www.npmjs.com/package/insert-module-globals)
as the `opts.vars` parameter.
Expand Down