Thanks for your comments, I'm glad you liked it.
About CommonJS, the compatibility is the other way round. Shepherd can load
commonJS modules without the addition of the in-comment syntax declaration.
In such a case, require is wrapped to load whether an already loaded ES6
module or use commonJS's require. furthermore, exports or module.exports is
used as the public API of the ES6 module (which is basically the definition
:) ). This is really useful for 3rd party modules.

Removing the comments would be possible, but it would require a much
heavier parsing phase, and would probably require a full-blown JS parser,
such as Esprima. it would be probably computationnally too heavy for the
browser (read: for the user) without a systematic and automatic
code-rewrite to ES5, optionnaly accompagned with some minification.
On the other hand, the great advantage of using comments is that they act
as placeholders for the syntax declaration, and are very easy to locate
with a single regular expression.

More realistically, I plan on allowing multiple module declarations in a
single file (currently one only), where module implementations would be
syntactically separated by the numerous definitions (ie, the implementation
of a module ends at the beginning of the next module declaration).

But yes, I am looking for an efficient way to remove the comments, which
would be the only way Shepherd could be used as an efficient
Harmony:modules polyfill. Maybe I'll have to play around with more
minimalist placeholders, such as:

//s6d
module myModule {
  import x from X;
  export a, b, c, d;
}
//-s6d

...though the ending comment doesn't seem necessary.

And please don't blame me for the possible terrible idea, I'm thinking
aloud on this one! ;)

The tradeoff to be found is the following: As of today, no browser has a
stable release that allows harmony modules (yeah, the latest V8 has an
option, well...). Whatsmore, the syntax is just a proposal which is updated
almost every quarter. So do we want to allow files that work on today's
engines and can be enhanced with Harmony:modules' features thankd to
Shepherd, or do we want Harmony compliant files that won't run natively on
any stable engine we can find today?

I chose the first path, but the discussion remains open. I'll be happy to
hear your thoughts on that point.

Xavier

On Wed, Apr 18, 2012 at 3:11 PM, Russell Leggett
<russell.legg...@gmail.com>wrote:

> This is great! I've been considering doing the same thing, but I haven't
> found the time. When you say it is compatible with CommonJS modules, does
> that mean that you can do an import using ES6 syntax and have the result do
> a CommonJS require?
>
> The big thing I'm noticing is that all of the examples are inside of
> comments, and your module definitions including exports are all separate
> from the actual code for those exports. I'm assuming that means somebody
> couldn't actually take the ES6 module examples and make them work, for
> example. I appreciate the difference in difficulty level. Parsing just the
> module syntax vs being an ES5 compliant parser + modules is a much
> different task. The problem is, I don't see myself using it unless it
> actually used full module syntax. Do you plan on going in that direction?
>
> - Russ
>
> On Wed, Apr 18, 2012 at 8:20 AM, Xavier CAMBAR <xcam...@gmail.com> wrote:
>
>> Hi,
>> I wanted to announce that I've been working on a project called Shepherd (
>> http://xcambar.github.com/shepherd-js), a pure Javascript implementation
>> of Harmony modules.
>>
>> Why such a project ? Fun first. Second, I was really looking forward to
>> use harmony modules. Third, I wanted an efficient way to use my modules on
>> the server and the client. And it seems to me that current module loaders
>> and APIs available will be, at the end, superseded by the module syntax
>> being defined at ECMA for the future versions of ECMAScript.
>>
>> The syntax used is as of 2012-02-27 (
>> http://wiki.ecmascript.org/doku.php?id=harmony:modules&rev=1330363672),
>> I couldn't find the time to implement the latest proposal (besides I would
>> have had to choose one of the two variants), but apart from the syntax, it
>> is usable both on the client and the server, and tested.
>>
>> The parser/lexer has been developped using JISON (
>> http://zaach.github.com/jison/) and is available as a separate project (
>> https://github.com/xcambar/harmony-parser).
>>
>> For backward-compatibility, the module declarations have to be put into
>> comments (which you will discover in the examples provided on the site), it
>> is compatible with CommonJS modules (user-defined as well as native modules
>> in Node.js), and, although not critical to the project, a compatibility
>> wrapper for the AMD API is on its way.
>> Regarding production-level requirements, an optimizer has been
>> implemented, but it still requires testing before being released.
>>
>> I've had and I'm still having a really good time working on this project
>> and I would really appreciate if I could have some feedback from the
>> readers and contributors of the mailing-list.
>> A mailing list has been created for the project, still empty of messages
>> simply because it has been created yesterday ;)
>>
>> Regards,
>>
>> --
>> Xavier CAMBAR
>> @xcambar <https://twitter.com/#!/xcambar>
>>
>>
>> _______________________________________________
>> es-discuss mailing list
>> es-discuss@mozilla.org
>> https://mail.mozilla.org/listinfo/es-discuss
>>
>>
>


-- 
-- 
Xavier CAMBAR
@xcambar <https://twitter.com/#!/xcambar>
T: +33 6.84.29.46.83
_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to