Implementation of P-Code
npm install @p-code-magazine/p-codeP-Code is a language for live coding that evolved from the idea of describing rhythm machine patterns in text form and incorporated elements of programming. The code is interpreted from left to right, divided into numbers and other symbols, and executed. All numbers are processed as frequencies, and all symbols that cannot be interpreted are treated as white noise.
``shellscript`
npm i @p-code-magazine/p-code
`javascript
import { PCode } from '@p-code-magazine/p-code';
const pcode = new PCode();
// No options supplied, "loopContext = 'external'" is default.
// You need to handle run-execute process by self.
//
// (e.g. into setInterval or requestAnimationFrame callback)
...
if (pcode.isPlaying) {
if (pcode.hasNext()) {
let node = pcode.tokens[pcode.pointer];
pcode.execute(node);
pcode.next();
} else {
pcode.isPlaying = false;
}
} else {
if (pcode.doLoop) {
pcode.reset();
pcode.isPlaying = true;
} else {
pcode.stop();
}
}
...
`
or
`javascript
import { PCode } from '@p-code-magazine/p-code';
const pcode = new PCode({
// If loopContext = 'internal', p-code run as internal-loop (standalone) mode.
loopContext: 'internal'
// Other options, defaults are as follows:
/*
enableCommentSyntax: false,
lineComment: '#',
blockComment: /""".*?"""/g
*/
});
`
`html
`
A shrot tutorial is here, or run on CodePen
``
npm i
npm run build
Create a Self-Signed SSL Certificate. How to get https working on your local development environment in 5 minuts.
``
npm run example:serve
Access https://[LOCAL-SERVER-IP-ADDRESS]:8080/ on your mobile.
```
npm run example:build