## 2016-10-20 Scripting the lively-sync tool to develop new lively-server features

The wintersemester just began and I welcome all new Lively4 users in [SWD16](SWD16). 

### Scripting the lively-sync tool to develop new lively-server features

```
// open sync tool and login
var synctool = document.querySelector("lively-sync")
await fetch("https://lively-kernel.org/lively4S2/_git/versions", {
	headers: {
		gitemail: 		await synctool.loadValue("githubEmail"),
		gitusername:	await synctool.loadValue("githubUsername"),
		gitpassword:	await synctool.loadValue("githubToken"),
		gitrepository: 	"Lively4.wiki",
		gitfilepath: 	"Journal.md",

	}
}).then( r => r.text())
```

