DZone
Web Dev Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Web Dev Zone > amdefine: Use AMD Modules on Node.js

amdefine: Use AMD Modules on Node.js

Axel Rauschmayer user avatar by
Axel Rauschmayer
·
Jul. 16, 12 · Web Dev Zone · Interview
Like (0)
Save
Tweet
3.24K Views

Join the DZone community and get the full member experience.

Join For Free
James Burke’s npm module amdefine lets you write AMD modules [1] that also work on Node.js. To do so, you need to perform the following steps:
  • Install amdefine:
        npm install amdefine
    
    Optional: install into your project by making it a dependency in your package.json.
  • Prefix your AMD with the following line (split into three lines below):
        if (typeof define !== 'function') {
            var define = require('amdefine')(module)
        }
    
    That line will be removed when packaging your AMDs for deployment via the RequireJS optimizer.
The amdefine readme has more information. Writing an AMD in this manner has one disadvantage: To use it on Node.js, one has to install amdefine. Node’s maintainers want to keep the system small and didn’t want to build AMD support in. However, they might reconsider if demand can be proven, by enough people installing amdefine.

If you don’t want to force Node.js users of your module to install amdefine, there are alternatives [2] for writing AMDs that also work on Node.js. But they have other disadvantages.

References:

  1. The power of the Asynchronous Module Definition
  2. Bridging the module gap between Node.js and browsers
Asynchronous module definition Node.js

Published at DZone with permission of Axel Rauschmayer, DZone MVB. See the original article here.

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • It's Official! Fat Arrows in JavaScript!
  • Fun With Modules
  • Observability Tools Help Catch Application Failures — But Automating the Observer Is Becoming Crucial
  • Delivering the Future of Uber-Like Apps With AI and ML

Comments

Web Dev Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo