Tony Garnock-Jones
023d2d65a3
- @syndicate-lang/browser-stdenv@0.37.0 - @syndicate-lang/core@0.36.0 - @syndicate-lang/create@0.27.0 - @syndicate-lang/esbuild-plugin@0.1.0 - @syndicate-lang/fs@0.37.0 - @syndicate-lang/html@0.37.0 - @syndicate-lang/html2@0.37.0 - @syndicate-lang/loader@0.37.0 - @syndicate-lang/service@0.37.0 - @syndicate-lang/syndicatec@0.38.0 - @syndicate-lang/timer@0.37.0 - @syndicate-lang/ts-plugin@0.38.0 - @syndicate-lang/tsc@0.38.0 - @syndicate-lang/ws-relay@0.38.0 |
||
---|---|---|
examples | ||
git-hooks | ||
packages | ||
todo | ||
.gitignore | ||
.npmignore | ||
lerna.json | ||
LICENCE | ||
Makefile | ||
package.json | ||
README.md | ||
rollup.js | ||
setup.sh | ||
syndicate-js.code-workspace | ||
TODO.md | ||
watchall | ||
yarn.lock |
Syndicate/js
A fourth-generation implementation of Dataspaces and Syndicate for TypeScript and JavaScript, in both node.js and the browser. The implementation techniques herein are the subject of a forthcoming paper.
Branches
The main
branch is where active development happens:
git clone -b main https://git.syndicate-lang.org/syndicate-lang/syndicate-js
Building
This project uses yarn
, not npm
.
The repository is a monorepo, using yarn workspaces. Lerna is used as a thin veneer atop yarn workspaces, providing convenient automation for package version management and publication.
After a checkout, run:
make bootstrap
Alternatively, running:
yarn install
./node_modules/.bin/lerna exec yarn prepare
will download and install all dependencies and then build all the packages.
Licence
@syndicate-lang, an implementation of Syndicate for TypeScript and JavaScript.
Copyright (C) 2016-2021 Tony Garnock-Jones tonyg@leastfixedpoint.com
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
Older versions
An earlier TypeScript+JavaScript implementation from early 2021 (the
primary difference to main
being a lack of object-capability
support) can be found on the typescript1
branch:
git clone -b typescript1 https://git.syndicate-lang.org/syndicate-lang/syndicate-js
Finally, the babel-based
branch is from 2018, and is an
implementation for JavaScript only. It extends babel with new syntax
and new plugins (rather than implementing its own error-tolerant
parser, like typescript1
and main
):
git clone -b babel-based https://git.syndicate-lang.org/syndicate-lang/syndicate-js