Difference between revisions of "JavaScript"

From Chessprogramming wiki
Jump to: navigation, search
(2 intermediate revisions by the same user not shown)
Line 14: Line 14:
 
=Forum Posts=
 
=Forum Posts=
 
==2010 ...==
 
==2010 ...==
* [http://rybkaforum.net/cgi-bin/rybkaforum/topic_show.pl?tid=15663 Javascript chess engine] by gladius, [[Computer Chess Forums|Rybka Forum]], February 23, 2010
+
* [http://rybkaforum.net/cgi-bin/rybkaforum/topic_show.pl?tid=15663 Javascript chess engine] by [[Gary Linscott|gladius]], [[Computer Chess Forums|Rybka Forum]], February 23, 2010
 
* [http://www.talkchess.com/forum/viewtopic.php?t=40876 Javascript port of Stockfish] by David Whitten, [[CCC]], October 24, 2011
 
* [http://www.talkchess.com/forum/viewtopic.php?t=40876 Javascript port of Stockfish] by David Whitten, [[CCC]], October 24, 2011
 
* [http://www.open-chess.org/viewtopic.php?f=5&t=2361 Engine In Javascript] by [[BlueFeverSoft|bluefever]], [[Computer Chess Forums|OpenChess Forum]], July 12, 2013
 
* [http://www.open-chess.org/viewtopic.php?f=5&t=2361 Engine In Javascript] by [[BlueFeverSoft|bluefever]], [[Computer Chess Forums|OpenChess Forum]], July 12, 2013
Line 29: Line 29:
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=76101 Wukong JS - chess engine with UCI support, own GUI and public API] by [[Maksim Korzh]], [[CCC]], December 19, 2020
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=76101 Wukong JS - chess engine with UCI support, own GUI and public API] by [[Maksim Korzh]], [[CCC]], December 19, 2020
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=76140 Setup a javascript engine in a GUI] by [[Ferdinand Mosca]], [[CCC]], December 24, 2020
 
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=76140 Setup a javascript engine in a GUI] by [[Ferdinand Mosca]], [[CCC]], December 24, 2020
 +
* [http://www.talkchess.com/forum3/viewtopic.php?f=2&t=76741 Javascript question] by [[Gabor Szots]], [[CCC]], February 28, 2021
  
 
=External Links=  
 
=External Links=  
Line 47: Line 48:
 
* [https://github.com/oakmac/chessboardjs GitHub - oakmac/chessboardjs: JavaScript chessboard]  » [[2D Graphics Board]]
 
* [https://github.com/oakmac/chessboardjs GitHub - oakmac/chessboardjs: JavaScript chessboard]  » [[2D Graphics Board]]
 
* [https://github.com/op12no2/lozza GitHub - op12no2/lozza: A simple Javascript UCI chess engine] by [[Colin Jenkins]]
 
* [https://github.com/op12no2/lozza GitHub - op12no2/lozza: A simple Javascript UCI chess engine] by [[Colin Jenkins]]
 +
* [https://github.com/maksimKorzh/wukongJS GitHub - maksimKorzh/wukongJS: JavaScript chess engine with UCI support, own GUI and public API written] by [[Maksim Korzh]] » [[Wukong JS]]
 
* [http://sourceforge.net/projects/jsuci/ Javascript Universal Chess Interface | Free software downloads at SourceForge.net] by [[Edmund Moshammer]] » [[UCI]]
 
* [http://sourceforge.net/projects/jsuci/ Javascript Universal Chess Interface | Free software downloads at SourceForge.net] by [[Edmund Moshammer]] » [[UCI]]
  
 
==Online GUI==
 
==Online GUI==
* [https://op12no2.github.io/lozza-ui/ Play Lozza online]
 
 
* [http://jtiscione.github.io/chessboard3js/play.html chessboard3.js] by [[Jason Tiscione]]
 
* [http://jtiscione.github.io/chessboard3js/play.html chessboard3.js] by [[Jason Tiscione]]
 +
* [https://op12no2.github.io/lozza-ui/ Play Lozza online] by [[Colin Jenkins]]
 +
* [https://maksimkorzh.github.io/wukongJS/wukong.html WukongJS v 1.2a] by [[Maksim Korzh]]
  
 
=References=
 
=References=
 
<references />
 
<references />
 
'''[[Languages|Up one Level]]'''
 
'''[[Languages|Up one Level]]'''

Revision as of 23:54, 28 February 2021

Home * Programming * Languages * JavaScript

JavaScript is a dynamically typed programming language with a prototype-based object system. It is interesting because it runs in web browsers and has received more than its fair share of optimization effort. Modern JavaScript engines with JIT compilation can play chess well enough to be interesting.

See also

Publications

Forum Posts

2010 ...

2015 ...

2020 ...

External Links

Repos

Online GUI

References

Up one Level