nmtg-template-mailerlite-inner
v7.6.0
Published
This library was generated with [Nx](https://nx.dev).
Downloads
49
Readme
inner
This library was generated with Nx.
Building
Run nx build inner
to build the library.
Running unit tests
Run nx test inner
to execute the unit tests via Jest.
ts-node your-script.ts
i was forced to remove factory and createComponentUniversal, as it messing up with our new setup
or
reate one file helloworld.ts
function hello(person){
return "Hello, " + person;
}
let user = "Aamod Tiwari";
const result = hello(user);
console.log("Result", result)
Open command prompt and type the following command
tsc helloworld.ts
Again run the command
node helloworld.js
Result will display on console