Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webtiming/timingsrc
Source code for timing related libraries managed by webtiming (multi-device timing CG)
https://github.com/webtiming/timingsrc
Last synced: 3 months ago
JSON representation
Source code for timing related libraries managed by webtiming (multi-device timing CG)
- Host: GitHub
- URL: https://github.com/webtiming/timingsrc
- Owner: webtiming
- License: lgpl-3.0
- Created: 2015-11-19T11:52:42.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-02-05T21:20:43.000Z (about 1 year ago)
- Last Synced: 2024-07-09T22:59:13.162Z (7 months ago)
- Language: JavaScript
- Size: 24.3 MB
- Stars: 155
- Watchers: 13
- Forks: 16
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-networked-media - timingsrc - Source code for timing related libraries managed by webtiming (multi-device timing CG) (Uncategorized / Uncategorized)
- awesome-github-repos - webtiming/timingsrc - Source code for timing related libraries managed by webtiming (multi-device timing CG) (JavaScript)
README
# timingsrc
Web Documentation for timingsrc available at [http://webtiming.github.io/timingsrc/](http://webtiming.github.io/timingsrc/)
Timingsrc includes source code and documentation for timing related libraries managed by [Multi-Device Timing Community Group](https://www.w3.org/community/webtiming/)
The timingsrc library is available under the LGPL licence.
### Timing Object
[timingobject](v2/timingobject)
This implements the [Timing Object Draft Spec](https://github.com/webtiming/timingobject) as well as a set of Timing Converters.
### Sequencing
[sequencing](v2/sequencing)
This implements tools for timed sequencing based on the Timing Object.
### Compile Timingsrc v3
Install Node and NPM (Node Packet Manager)
#### Ubuntu Instructions
Update if necessary
```sh
sudo apt update
sudo apt-get update
```Add NodeSource repository for Nodejs and NPM (Node Packet Manager)
[Install Nodejs on Ubuntu](https://github.com/nodesource/distributions)
```sh
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -# script output
# Run `sudo apt-get install -y nodejs` to install Node.js 14.x and npm
# You may also need development tools to build native addons:
# sudo apt-get install gcc g++ make
# To install the Yarn package manager, run:
# curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
# echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
# sudo apt-get update && sudo apt-get install yarn# install both node and npm
sudo apt-get install -y nodejs
```#### Install Package Dependencies
- Bundler: [Rollup](https://rollupjs.org/guide/en/).
- Script Minifier: [Terser](https://terser.org/)
- Bundler Plugin: [Rollup-Plugin-Terser](https://www.npmjs.com/package/rollup-plugin-terser)Rollup needs global install so that it may be used by the compile.py script.
```sh
npm install --global rollup
```
Then go ahead and install the rest from package.json```sh
cd ~/timingsrc
npm install
```Alternatively, install manually
```sh
sudo npm install --global rollup
npm install terser
npm install rollup-plugin-terser
```### Build v3
```sh
python3 compile.py v3
```
Build puts new files in *docs/lib*After build - commit all build files
```sh
git commit -am "build"
git push
```### Deploy
Switch to master and merge in new build files from develop.
```sh
git checkout master
git merge develop
git push
git checkout develop
```