• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H07-May-2022-4138

.gitattributesH A D29-May-2018166 86

.gitignoreH A D29-May-201823 54

AUTHORSH A D29-May-201842 21

COPYINGH A D29-May-2018755 1712

MakefileH A D29-May-20183.5 KiB144103

READMEH A D29-May-20181.6 KiB5331

astnames.hH A D29-May-20181.2 KiB9392

jsarray.cH A D29-May-201813.4 KiB734606

jsboolean.cH A D29-May-2018969 4134

jsbuiltin.cH A D29-May-20186 KiB246209

jsbuiltin.hH A D29-May-2018651 2218

jscompile.cH A D29-May-201830.4 KiB1,3661,187

jscompile.hH A D29-May-20183 KiB156123

jsdate.cH A D29-May-201819.3 KiB813695

jsdtoa.cH A D29-May-201827.7 KiB748611

jsdump.cH A D29-May-201817.5 KiB915805

jserror.cH A D29-May-20183.1 KiB133117

jsfunction.cH A D29-May-20184.6 KiB230179

jsgc.cH A D29-May-20186.4 KiB246215

jsi.hH A D29-May-20185.8 KiB238176

jsintern.cH A D29-May-20183.1 KiB136117

jslex.cH A D29-May-201819.1 KiB862731

jslex.hH A D29-May-20181 KiB8272

jsmath.cH A D29-May-20183.6 KiB173151

jsnumber.cH A D29-May-20184.4 KiB182153

jsobject.cH A D29-May-201812.1 KiB518449

json.cH A D29-May-20187.8 KiB377329

jsparse.cH A D29-May-201822.6 KiB1,011870

jsparse.hH A D29-May-20182 KiB147122

jsproperty.cH A D29-May-20188 KiB333285

jsregexp.cH A D29-May-20184.1 KiB198169

jsrun.cH A D29-May-201836.2 KiB1,7521,459

jsrun.hH A D29-May-2018251 1611

jsstate.cH A D29-May-20184.8 KiB283235

jsstring.cH A D29-May-201814.1 KiB702608

jsvalue.cH A D29-May-201814.2 KiB624535

jsvalue.hH A D29-May-20184.1 KiB186155

main.cH A D29-May-20184.9 KiB267229

mujs.hH A D29-May-20187.4 KiB222177

one.cH A D29-May-2018544 2726

opnames.hH A D29-May-2018867 9190

pp.cH A D29-May-20182.1 KiB11690

regexp.cH A D29-May-201823.9 KiB1,1661,048

regexp.hH A D29-May-2018857 4330

utf.cH A D29-May-20182.9 KiB165104

utf.hH A D29-May-20181.1 KiB4335

utftype.cH A D29-May-201829 KiB1,1391,081

README

1MuJS: an embeddable Javascript interpreter in C.
2
3ABOUT
4
5MuJS is a lightweight Javascript interpreter designed for embedding in
6other software to extend them with scripting capabilities.
7
8LICENSE
9
10MuJS is Copyright 2013-2017 Artifex Software, Inc.
11
12Permission to use, copy, modify, and/or distribute this software for any
13purpose with or without fee is hereby granted, provided that the above
14copyright notice and this permission notice appear in all copies.
15
16The software is provided "as is" and the author disclaims all warranties with
17regard to this software including all implied warranties of merchantability
18and fitness. In no event shall the author be liable for any special, direct,
19indirect, or consequential damages or any damages whatsoever resulting from
20loss of use, data or profits, whether in an action of contract, negligence
21or other tortious action, arising out of or in connection with the use or
22performance of this software.
23
24COMPILING
25
26If you are building from source you can either use the provided Unix Makefile:
27
28	make release
29
30Or compile the source with your preferred compiler:
31
32	cc -O2 -c one.c -o libmujs.o
33
34INSTALLING
35
36To install the MuJS command line interpreter, static library and header file:
37
38	make prefix=/usr/local install
39
40DOWNLOAD
41
42The latest development source is available directly from the git repository:
43
44	git clone http://git.ghostscript.com/mujs.git
45
46REPORTING BUGS AND PROBLEMS
47
48Report bugs on the ghostscript bugzilla, with MuJS as the selected component.
49
50	http://bugs.ghostscript.com/
51
52The MuJS developers hang out on IRC in the #mupdf channel on irc.freenode.net.
53