Which languages and frameworks are supported?
PlayCode has front-end only support, and includes these languages:
JavaScript:
- JavaScript
.js
- TypeScript
.ts
- JSX
.jsx
- TSX
.tsx
- CoffeeScript
.coffee
CSS
- CSS
.css
- SASS
.sass
- SCSS
.scss
- Less
.less
HTML
- HTML
.html
- Pug
.pug
How do I change a language?
Javascript -> typescript:
- Rename file
script.js
toscript.ts
(changed extension). - Update
index.html
to include right script:
<script src="script.ts"></script>
CSS -> SCSS:
- Rename file
style.css
toscript.scss
(changed extension). - Update
index.html
to include right style:
<link rel="style.scss" type="stylesheet" />
The same method for all other languages.
Templates
We've client templates for: React, Vue, Three.js, Tailwind CSS, Bulma, Bootstrap as well as vanilla JavaScript that uses Parcel like bundler based on Esbuild, and one for static (HTML, JavaScript, CSS) projects to speed up start time.
Updated on: 16/03/2022
Thank you!