eyad_cli
v1.0.8
Published
This is a Javascript CLI made with Typescript to code on the go. This project is still in development and you can use it for educational purposes
Downloads
5
Maintainers
Readme
About the project
This is a Javascript CLI made with Typescript to code on the go. This project is still in development and you can use it for educational purposes.
How to get started
Run npm install eyad_cli
to install the package.
Then run npx eyad_cli serve
to run the appliaction.
Open http://localhost:4005 in your browser.
Example:
import React, { useState } from 'react';
const App = () => {
const [name, setName] = useState('EYAD');
return <h1>{name}</h1>;
};
show(<App />);