diff --git a/README.md b/README.md
index 7c779e9..32ecb3f 100644
--- a/README.md
+++ b/README.md
@@ -1,21 +1,21 @@
# Socio - A WebSocket Real-Time Communication (RTC) API framework.
-
+---
* 3 min video - Introduction demo.
* 16 min video - Getting started with Socio 0.7, SvelteKit, Vite.
---
-* [Basic Demo project](https://github.com/Rolands-Laucis/Socio/blob/master/demos/basic/readme.md) - interactive bare-bones demo project.
-* [Secure Full-Stack Framework Demo project](https://github.com/Rolands-Laucis/Socio/tree/master/demos/full-stack_framework#readme) - interactive demo project with SvelteKit and Vite.
-* [Simple Documentation](https://github.com/Rolands-Laucis/Socio/blob/master/Documentation.md) - page to see direct examples and explanations of how to use various parts of the lib.
+* [Interactive Basic Demo project](https://github.com/Rolands-Laucis/Socio/blob/master/demos/basic/readme.md)
+* [Interactive Secure Full-Stack Framework Demo project](https://github.com/Rolands-Laucis/Socio/tree/master/demos/full-stack_framework#readme) with SvelteKit and Vite.
+* [Simple Documentation](https://github.com/Rolands-Laucis/Socio/blob/master/Documentation.md)
* [Website made with Socio](http://riga.rolandslaucis.lv/) by me. Real-time rent prices in Riga, Latvia. SvelteKit, Vite, Socio, NginX, Ubuntu server.
---
No more API middleware and backend DB interfacing functions and wrappers and handlers. Write your SQL queries on the frontend and have their results be automagically refreshed on all clients when a resource is changed on the server DB. This is secure.
-Framework, build tool, server lib and SQL database agnostic.
+Agnostic of framework, build tool, server lib and SQL database. Requires Node.js >= 16 LTS.
### Instalation 🔧
-In your Node.js project root dir:
+In your project root dir:
```bash
npm i socio
```
@@ -32,13 +32,10 @@ This is all done with the ``SocioSecurity`` class manually or automagically with
## Code snippets 📜
-Written in TypeScript, but of course can use the lib in JS scripts just the same.
-
```ts
//TS server side
import { SocioServer } from 'socio/dist/core'; //this way for both JS and TS. Might need to put .js at the end.
import { SocioSecurity } from 'socio/dist/secure';
-import type { QueryFunction, QueryFuncParams } from 'socio/dist/core';
async function QueryWrap(client: SocioSession, id: id, sql: string, params: object | Array | any):Promise