Subj : Re: Simple API for JavaScript? To : netscape.public.mozilla.jseng From : Martin Honnen Date : Thu Apr 03 2003 11:57 am Kang Jeong-Hee wrote: > Hi. > I'm not sure this place is good to post issue like this: > I need a good-matured JavaScript interpreter. > and I don't like to import Rhino or SpiderMonkey, at this moment. Then this is not the right place to look for further info. > NJS at http://www.bbassett.net/njs/ is one of entry. > > and, when there's no good choice for me, > I'll try to implement a js interpreter of my own, > from the first line of code. > > then, which spec do I have to work with? > XML has SAX, CSS has SAC, JS has what? The core JavaScript language is specified as ECMAScript edition 3 You can download that specification from http://www.ecma-international.org/ If you want to use JavaScript to script XML and/or HTML pages then look at the DOM section on http://www.w3.org/, it defines APIs in an IDL but an ECMAScript binding is also given. -- Martin Honnen http://javascript.faqts.com/ .