marcoslin / angularAMD

Facilitate use of RequireJS in AngularJS
http://marcoslin.github.io/angularAMD
MIT License
734 stars 171 forks source link

angularAMD still alive? #134

Closed RobertjanTuit closed 9 years ago

RobertjanTuit commented 9 years ago

This looks like an awesome library, and would save us from having to do a lot of this ourselves.

But looking at the open issues, and commit history, is it right to assume this is no longer being worked on, should we be looking at something else, will this be supported forward, or does it just need more contributors?

Thanks in advance, _Rj

marcoslin commented 9 years ago

I use it....

The only problem is that my day job has been taking up all my times lately so no time left dedicate to angularAMD. I truly feel bad.

More contributor will definitely help. Those interested, please do let me know.

Our project (day job) is going live next week. So hopefully I will have more time then.

RobertjanTuit commented 9 years ago

Thanks Marcos! Good to know it is still alive, would be a huge waste otherwise :) We'll consider contributing once we start using it in our current project.

mpiasta-ca commented 9 years ago

I'm using AngularAMD in our project. Everything is working great, but I could use some support for angularAMD.config(...) , so that I can split my app.js file into smaller chunks of code.

Right now I'm doing something like this (see app-router and setRouter), but it's not ideal:

define([
  'angularAMD',
  'app-router'
], function (angularAMD, setRouter) {

  var app = angular.module('app', ['ngRoute'])
    .config(setRouter);

  return angularAMD.bootstrap(app);
});