Skip to content

luis-keny/playrunjs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

 ✦ PlayRunJs ✦ 

html5 Css3 Javascript Tailwind css Git Vite

✨ Features

  • Instant execution of Javascript code.
  • Copy javascritp code using a button.
  • Copy link using a button.
  • Share your code made using the page link.
  • Import code with the link from the page.

🛠️ Installation

Clone the repository:

git clone git@github.com:luis-keny/playrunjs.git  
cd playrunjs  

Install dependencies:

npm install  

Start the app:

npm run dev 

🚀 Usage

  1. Write code in the editor.
  2. Results will appear in the console on the right.

Example:

// Calculate Fibonacci  
function fibonacci(n) {  
  return n <= 1 ? n : fibonacci(n - 1) + fibonacci(n - 2);  
}  

console.log(fibonacci(10)); // 55  

About

The project executes JavaScript code and displays the console.log on the web. Also, the code that is written is passed in the URL using Base64, which makes it easy to share.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors