āļ§ัāļ™āđ€āļŠāļēāļĢ์āļ—ี่ 9 āļāļĢāļāļŽāļēāļ„āļĄ āļž.āļĻ. 2559

How to Download Composer for using Slim (a micro framework for PHP)



Step 1 : Download and run Composer-Setup.exe

Step 2 : Open Command Prompt on Windows and Run Script


-Download the installer to the current directory
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"

-Verify the installer SHA-384 which you can also cross-check here
php -r "if (hash_file('SHA384', 'composer-setup.php') === 'e115a8dc7871f15d853148a7fbac7da27d6c0030b848d9b3dc09e2a0388afed865e6a3d6b3c0fad45c48e2b5fc1196ae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"

-Run the installer
php composer-setup.php

-Remove the installer
php -r "unlink('composer-setup.php');"

-----------------------After Install and Telling Message-------------------------
All settings correct for using Composer
Downloading 1.1.3...
Composer successfully installed to: C:\Users\suttipong\composer.phar
Use it: php composer.phar

-Update Composer
php composer.phar self-update

HOW TO USE COMPOSER


Example : Create Project laravel with Composer : 
composer create-project laravel/laravel exampleProject --prefer-dist




Problems 1 : How to import vendor folder

If you have the problem (vendor/autoload.php) in your php file it's has not work.



Autoload File has not work and it show message in the windows


How to....

Step 1 : copy composer.phar file into your folder in server and you write the command


Step 2 : From this command. It has the generate file (vendor folder, composer.lock) in your folder


Problems 2 : class slim/slim not found with composer

You will must have to write script for test.

-How to test Autoload of Slim

<?php
   require 'vendor/autoload.php';   //call Autoload PHP Page
   $app = new \Slim\Slim();          //call Slim PHP class
   $app->get('/', function () {         //get root path
   echo "Hello World!";
});
$app->run();

-How to test Slim class

<?php
    //require 'Slim/Slim.php';
    require 'vendor/slim/slim/Slim/Slim.php';
    $app = new Slim();
    $app->get('/hello', 'hello');        //call hello page and call method hello
    $app->get('/hello/:name', function ($name) {
    echo "Hello, $name";
});
$app->run();

function hello() {
    echo "Hello World.";
}
?>

Reference :

Problems 3 : xampp server 404 page not found

index.php
<?php 
// Pull in our bootstrap file.
require_once '../src/ProjectName/bootstrap.php';
$app->run();
.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}% !-f
RewriteCond %{REQUEST_FILENAME}% !-d
RewriteRule ^ index.php [QSA,L]
<?php 
require_once '../vendor/autoload.php';
$app = new \Slim\App();
require_once 'Routes.php';
example.php
$app->get('/example/{name}', function ($request, $response, $args) {
    echo 'Hello ' . $args['name'];
}

Problems 4 : How to require function between class with using root path in PHP folder

/A
   foo.php
   tar.php
   B/
       bar.php
If you call foo.php (ex: http://example.com/foo.php), the working directory will be /A/. If you call bar.php (ex: http://example.com/B/bar.php), the working directory will be /A/B/.
foo.php call bar.php
<?php
require_once( 'B/bar.php' );
?>
bar.php call tar.php
<?php
require_once( 'tar.php');
?>
--------------------------------------------------------------------
URL :

1.) Composer - Dependency Management for PHP
https://github.com/kullawattana/composer

2.) Slim Framework 3 Skeleton Application
https://github.com/slimphp/Slim-Skeleton

3.) Download Composer for Create laravel and Slim Project
https://getcomposer.org/download/

4.) Laravel Project
https://laravel.com/docs/4.2/quick

5.) Install Composer on Windows
https://www.youtube.com/watch?v=ZocYVPP3nQY

6.) CURL
http://php.net/manual/en/book.curl.php
top.sk Web Developer

I can design web applications by using Java Server Faces (JSF), Primefaces, EJB3, SQL, DB2 (IBM) and designing report (Word, Excel and PDF) by using XML Script and Crystal Clear Report for the organization that can be easily and no problem for used and they can use the Web to manage the customer's organization effectively. I want to learn a new culture, technology and colleagues involved in the IT profession.

āļ§ัāļ™āļžุāļ˜āļ—ี่ 29 āļĄิāļ–ุāļ™āļēāļĒāļ™ āļž.āļĻ. 2559

How to install and configure AngularJS Web Project in Eclipse



āļ‚ั้āļ™āļ—ี่ 1 : āđƒāļŦ้āđ„āļ›āļ—ี่ Menu Help > Install New Software


āļ‚ั้āļ™āļ—ี่ 2 : āđƒāļŦ้ Add Repository āđ€āļžื่āļ­āļĨāļ‡ Package
Name : AngularJS
Location : http://oss.opensagres.fr/angularjs-eclipse/1.2.0/


āļ‚ั้āļ™āļ—ี่ 3 : āđƒāļŦ้āđ€āļĨืāļ­āļ Select All āđ€āļžื่āļ­āđ€āļĨืāļ­āļ Package āļ—ั้āļ‡āļŦāļĄāļ”


āļ‚ั้āļ™āļ—ี่ 4 : āđƒāļŦ้āļ—āļģāļāļēāļĢāļŠāļĢ้āļēāļ‡ Dynamic Web Project āđ€āļžื่āļ­āļ—āļ”āļŠāļ­āļšāļāļēāļĢāđƒāļŠ้āļ‡āļēāļ™ Package


āļ‚ั้āļ™āļ—ี่ 5 : āļ•ั้āļ‡āļŠื่āļ­ Project File āđāļĨ้āļ§āļāļ” Finish āđ€āļžื่āļ­āļŠāļĢ้āļēāļ‡ Project


āļ‚ั้āļ™āļ—ี่ 6 : āđ€āļĢāļēāļˆāļ°āđ„āļ”้āđ„āļŸāļĨ์ Project āļ‚ึ้āļ™āļĄāļē 1 āđ„āļŸāļĨ์


āļ‚ั้āļ™āļ—ี่ 7 : āđƒāļŦ้āļ—āļģāļāļēāļĢ Config File Project āļˆāļēāļ Dynamic Web Project āđ„āļ›āđ€āļ›็āļ™ AngularJS Project


āļ‚ั้āļ™āļ—ี่ 8 : āļāļēāļĢāļ•ั้āļ‡āļ„่āļēāđƒāļŦ้āđƒāļŠ้ NodeJS āđ‚āļ”āļĒāđƒāļŦ้āđ„āļ›āļ—ี่ Windows > Preferences




āļ‚ั้āļ™āļ—ี่ 9 : āđƒāļŦ้ Config Properties Project āđ€āļ›็āļ™ AngularJS



Reference Packages :
https://github.com/angelozerr/angularjs-eclipse/wiki/Getting-Started
https://github.com/angelozerr/tern.java/wiki/Tern-Script-Path
https://github.com/angelozerr/angularjs-eclipse
https://github.com/angelozerr/angularjs-eclipse/wiki/Installation-Update-Site
https://github.com/angelozerr/angularjs-eclipse/tree/master/samples

Bootstrap Test : https://github.com/BlackrockDigital/startbootstrap-modern-business

References :
https://techanand.wordpress.com/2014/03/09/how-to-install-and-configure-angularjs-in-eclipse/
http://javahonk.com/install-angularjs-plugin-eclipse/
https://www.toptal.com/angular-js/a-step-by-step-guide-to-your-first-angularjs-app

āļ—āļ”āļŠāļ­āļšāļāļēāļĢāļŠāļĢ้āļēāļ‡ Project :
http://blog.diniscruz.com/2014/02/using-angularjs-in-eclipse-part-1.html
top.sk Web Developer

I can design web applications by using Java Server Faces (JSF), Primefaces, EJB3, SQL, DB2 (IBM) and designing report (Word, Excel and PDF) by using XML Script and Crystal Clear Report for the organization that can be easily and no problem for used and they can use the Web to manage the customer's organization effectively. I want to learn a new culture, technology and colleagues involved in the IT profession.

āļ§ัāļ™āļ­ัāļ‡āļ„āļēāļĢāļ—ี่ 28 āļĄิāļ–ุāļ™āļēāļĒāļ™ āļž.āļĻ. 2559

How to install Package in Sublime Text 3 to build AngularJS 2 Web Project


āļŠāļ§ัāļŠāļ”ีāļ„āļĢัāļš āļ§ัāļ™āļ™ี้āļ—๊āļ­āļ›āļˆāļ°āļĄāļēāļ™āļģāđ€āļŠāļ™āļ­āļ‚ั้āļ™āļ•āļ­āļ™āļāļēāļĢāļ•ิāļ”āļ•ั้āļ‡ Package āļ—ี่āļˆāļģāđ€āļ›็āļ™āđƒāļ™ Sublime Text 3 āļ‹ึ่āļ‡āļ—ุāļ Package āļ—ี่āļ•ิāļ”āļ•ั้āļ‡āđ€āļ‚้āļēāđ„āļ› āļ™āļģāļĄāļēāļŠู่āļāļēāļĢāļžัāļ’āļ™āļē Web Application āļ‚āļ­āļ‡ AngularJS 2 āļ—ั้āļ‡āļŦāļĄāļ”

āđ‚āļ”āļĒāļ‚ั้āļ™āļ•āļ­āļ™āļāļēāļĢāļ•ิāļ”āļ•ั้āļ‡ āļĄีāļ”ัāļ‡āļ™ี้

āļ‚ั้āļ™āļ—ี่ 1. āđ€āļ‚้āļēāđ„āļ› Download Sublime Text 3 āļ—ี่ https://www.sublimetext.com/3


āđ€āļĄื่āļ­ Download āđ€āļŠāļĢ็āļˆāđ€āļĢีāļĒāļšāļĢ้āļ­āļĒāđāļĨ้āļ§ āđƒāļŦ้āļ—āļģāļāļēāļĢāļ•ิāļ”āļ•ั้āļ‡āļĨāļ‡āđ€āļ„āļĢื่āļ­āļ‡

āļ‚ั้āļ™āļ—ี่ 2. āļ่āļ­āļ™āļ—ี่āļˆāļ°āļ•ิāļ”āļ•ั้āļ‡ Package āļ•่āļēāļ‡āđ† āđƒāļ™āļ‚ั้āļ™āļ•āļ­āļ™āļ™ี้ āđƒāļŦ้āđ€āļ‚้āļēāđ„āļ›āļ•ิāļ”āļ•ั้āļ‡ Package Control āđƒāļŦ้āļัāļš Sublime Text 3 āļ—ี่ https://packagecontrol.io/ āļ่āļ­āļ™ āđ€āļžื่āļ­āļ—ี่āļˆāļ°āđ„āļ”้āļĨāļ‡ Package āļ­ื่āļ™āđ† āđƒāļ™āļĨāļģāļ”ัāļšāļ•่āļ­āđ„āļ›



āļ‚ั้āļ™āļ—ี่ 3. āđ€āļ‚้āļēāđ„āļ›āļ—ี่ https://packagecontrol.io/installation āđāļĨ้āļ§ Copy āļ„āļģāļŠั่āļ‡


āļ‚ั้āļ™āļ—ี่ 4. āđƒāļŦ้āđ€āļ›ิāļ”āđ‚āļ›āļĢāđāļāļĢāļĄ Sublime āļ‚ึ้āļ™āļĄāļē āđāļĨ้āļ§āđƒāļŦ้āđ„āļ›āļ—ี่ View > Show Console


āļ‚ั้āļ™āļ—ี่ 5. āđƒāļŦ้ Copy āļ„āļģāļŠั่āļ‡āđāļĨ้āļ§āđ„āļ›āļ§āļēāļ‡āđƒāļ™ Console āļˆāļēāļāļ™ั้āļ™āļāļ” Enter āđ€āļžื่āļ­ Run āļ„āļģāļŠั่āļ‡ āđ‚āļ”āļĒāđ€āļĄื่āļ­āđ€āļĢāļēāļĨāļ‡ Package āđ€āļŠāļĢ็āļˆāđāļĨ้āļ§ āđƒāļŦ้ Restart Program āļ‚ึ้āļ™āļĄāļēāđƒāļŦāļĄ่


āļ‚ั้āļ™āļ—ี่ 6. āđƒāļŦ้āļāļ” Ctrl+Shift+P āđ€āļžื่āļ­āļ„้āļ™āļŦāļē Install Package āđāļĨāļ°āđ€āļĄื่āļ­āđ€āļˆāļ­āđāļĨ้āļ§ āđƒāļŦ้ Double Click āđ€āļ‚้āļēāđ„āļ›


āļ‚ั้āļ™āļ—ี่ 7. āļŦāļĨัāļ‡āļˆāļēāļ Double Click āđ€āļ‚้āļēāđ„āļ›āđāļĨ้āļ§ āđƒāļŦ้āļžิāļĄāļž์āļ„āļģāļ§่āļē Emmet āđ€āļžื่āļ­āļ—ี่āđ€āļĢāļēāļˆāļ°āļĨāļ‡ Emmet Package āđƒāļ™ User Package āļ‚āļ­āļ‡āđ€āļĢāļē āđāļĨ้āļ§āļ็ Double Click āļĨāļ‡āđ„āļ”้āđ€āļĨāļĒ....


āļ–้āļēāļŦāļ™้āļēāļˆāļ­āļ›āļĢāļēāļāļāļ‚ึ้āļ™āļĄāļēāđāļšāļšāļ™ี้ āđāļŠāļ”āļ‡āļ§่āļē āļĨāļ‡āđ€āļŠāļĢ็āļˆāđ€āļĢีāļĒāļšāļĢ้āļ­āļĒāđāļĨ้āļ§ āđƒāļŦ้āļ—āļģāļāļēāļĢ Restart āļ‚ึ้āļ™āļĄāļēāđƒāļŦāļĄ่


āđ‚āļ”āļĒāļ§ิāļ”ีāđ‚āļ­āđāļŠāļ”āļ‡āļ§ิāļ˜ีāļāļēāļĢ Setup āļ็āļ•āļēāļĄāļ™ี้āļ„āļĢัāļš...



āļ•่āļ­āļĄāļē āļ„ืāļ­... āļ‚ั้āļ™āļ•āļ­āļ™āļāļēāļĢāļĨāļ‡ Snippets āļˆāļēāļ Github āđ‚āļ”āļĒāđƒāļŦ้āļ—ุāļāļ„āļ™āđ€āļ‚้āļēāđ„āļ›āļ—ี่ https://packagecontrol.io/packages/AngularJS%20Snippets āđ€āļžื่āļ­āđƒāļŠ้āļ‡āļēāļ™āļ„ีāļĒ์āļĨัāļ”āļŠāļģāļŦāļĢัāļšāļāļēāļĢāđ€āļĢีāļĒāļ Service āļ‚āļ­āļ‡ AngularJS āļ‹ึ่āļ‡āļˆāļ°āļĄีāđƒāļŦ้āđƒāļŠ้āļ•āļēāļĄāļŦัāļ§āļ‚้āļ­āļ”ัāļ‡āļ™ี้

-Services
-Directives
-Globals
-jQuery lite
-Scope functions
-Log functions
-Variables



āļĄี 2 āļ§ิāļ˜ีāļ—ี่āļˆāļ°āļŠāļēāļĄāļēāļĢāļ–āļ•ิāļ”āļ•ั้āļ‡ Pagkage āļ™ี้āđ„āļ”้ āļ„ืāļ­
-āļ§ิāļ˜ีāļ—ี่ 1 : āđ„āļ›āļ—ี่ github āđāļĨ้āļ§ Clone āļ”้āļ§āļĒ NPM āļŦāļĢืāļ­ Download Project āļĨāļ‡āļĄāļēāđāļĨ้āļ§āđ„āļ›āļ—ี่āđ‚āļ›āļĢāđāļāļĢāļĄ Sublime āđāļĨāļ° Browse Package āđ„āļ›āļ—ี่ Folder User āļ‚āļ­āļ‡āļ•ัāļ§āđ€āļ­āļ‡ āļŦāļĨัāļ‡āļˆāļēāļāļ™ั้āļ™āļ็ Copy File Shippets āļĄāļēāđāļĨ้āļ§āļ§āļēāļ‡
-āļ§ิāļ˜ีāļ—ี่ 2 : āđƒāļŠ้ Ctrl+Shift+P āđāļĨ้āļ§āđ„āļ›āļ—ี่ Install Package āļŦāļĨัāļ‡āļˆāļēāļāļ™ั้āļ™āļ„้āļ™āļŦāļēāļ„āļģāļ§่āļē AngularJS Snippets āđāļĨ้āļ§āļĨāļ‡ Package

āđ‚āļ”āļĒāļ‚ั้āļ™āļ•āļ­āļ™āļ™ี้āļ—๊āļ­āļ›āļˆāļ°āļŠāļēāļ˜ิāļ•āļ§ิāļ˜ีāđāļĢāļāđƒāļŦ้āļ”ูāļ่āļ­āļ™āļ™āļ°...


āđ‚āļ”āļĒāđƒāļ™ Github āļšāļ­āļāļ§่āļē āđƒāļŦ้āļ„ุāļ“āļ”āļēāļ§āđ‚āļŦāļĨāļ”āđāļĨ้āļ§āđ€āļ‚้āļēāđ„āļ›āļ—ี่ Menu User Folder āļ‚āļ­āļ‡āļ„ุāļ“āđāļĨ้āļ§ Copy File āļĄāļēāļ§āļēāļ‡āđāļĨāļ°āļ็āđƒāļŠ้āļ‡āļēāļ™āđ„āļ”้āđ€āļĨāļĒ...


āđ€āļĢāļēāļ็āđ€āļĢิ่āļĄāļ—āļģāļ•āļēāļĄāļ—ี่āđ€āļ‚āļēāļšāļ­āļāļัāļ™āđ€āļĨāļĒ... āđ„āļ›āļ—ี่ Preference > Browse Packages


āđāļĨ้āļ§āđ„āļ›āļ—ี่ User Folder


āļŦāļĨัāļ‡āļˆāļēāļāļ™ั้āļ™ Copy File āļĄāļēāļ§āļēāļ‡āđāļĨ้āļ§āđƒāļŠ้āļ‡āļēāļ™ Tag āđ„āļ”้āđ€āļĨāļĒāļĒāļĒ


āļ—āļ”āļŠāļ­āļšāļāļēāļĢāļ—āļģāļ‡āļēāļ™āļ”้āļ§āļĒāļāļēāļĢāļŠāļĢ้āļēāļ‡āđ„āļŸāļĨ์ javascript āļ‚ึ้āļ™āļĄāļē 1 āđ„āļŸāļĨ์āđāļĨāļ°āđ€āļĢีāļĒāļāđƒāļŠ้āļ„āļģāļŠั่āļ‡



Reference Packages:

āļŠ่āļ§āļ™āļ‚ั้āļ™āļ•āļ­āļ™āļāļēāļĢāļŠāļĢ้āļēāļ‡āđ‚āļ›āļĢāđ€āļˆāļ„ āļ•ิāļ”āļ•āļēāļĄāđ„āļ”้āļ—ี่āļ™ี่āđ€āļĨāļĒ āđ€āļĢื่āļ­āļ‡ AngularJS Structure...

root-app-folder
├── index.html
├── scripts
   ├── controllers
      └── main.js
      └── ...
   ├── directives
      └── myDirective.js
      └── ...
   ├── filters
      └── myFilter.js
      └── ...
   ├── services
      └── myService.js
      └── ...
   ├── vendor
      ├── angular.js
      ├── angular.min.js
      ├── es5-shim.min.js
      └── json3.min.js
   └── app.js
├── styles
   └── ...
└── views
    ├── main.html
    └── ...
top.sk Web Developer

I can design web applications by using Java Server Faces (JSF), Primefaces, EJB3, SQL, DB2 (IBM) and designing report (Word, Excel and PDF) by using XML Script and Crystal Clear Report for the organization that can be easily and no problem for used and they can use the Web to manage the customer's organization effectively. I want to learn a new culture, technology and colleagues involved in the IT profession.

āļ§ัāļ™āļˆัāļ™āļ—āļĢ์āļ—ี่ 27 āļĄิāļ–ุāļ™āļēāļĒāļ™ āļž.āļĻ. 2559

How to Clone AngularJS 2 Web Project from github with NPM Command and Git Bash


āļŠāļ§ัāļŠāļ”ีāļ„āļĢัāļš āļ§ัāļ™āļ™ี้āļ—๊āļ­āļ›āļˆāļ°āļĄāļēāļ™āļģāđ€āļŠāļ™āļ­āļ§ิāļ˜ีāļāļēāļĢāļ—āļ”āļŠāļ­āļš Web Application āļ—ี่āļ–ูāļāļžัāļ’āļ™āļēāļ”้āļ§āļĒ AngularJS 2 āļ‹ึ่āļ‡ āļ“.āļ›ัāļˆāļˆุāļšัāļ™āļ™ี้ āļ็āđ€āļ›็āļ™āļ—ี่āļ™ิāļĒāļĄāļ­āļĒ่āļēāļ‡āļĄāļēāļāđƒāļ™āļŦāļĄู่āļ™ัāļāļžัāļ’āļ™āļē Web Application



āļŠิ่āļ‡āļ—ี่āđ€āļĢāļēāļˆāļ°āļ•้āļ­āļ‡āļĄี āļ„ืāļ­...

1. NodeJS āđ€āļžื่āļ­āļāļēāļĢāļĨāļ­āļ‡ Package āļ”้āļ§āļĒ cmd
2. github
3. Typescript Library
4. Json Package

āļ§ัāļ™āļ™ี้āļ—๊āļ­āļ›āļˆāļ°āļĒāļāļ•ัāļ§āļ­āļĒ่āļēāļ‡ Dashboard Project āļˆāļēāhttps://github.com/start-angular/SB-Admin-BS4-Angular-2 āđ‚āļ”āļĒāļ—ี่āļ—๊āļ­āļ›āļˆāļ° Clone Project āļĄāļēāđ„āļ§้āļ—ี่āđ€āļ„āļĢื่āļ­āļ‡āļ•ัāļ§āđ€āļ­āļ‡...


āļ‚ั้āļ™āļ•āļ­āļ™āļāļēāļĢ Setup Project

āđƒāļŦ้āđ€āļĢāļēāđ€āļĢิ่āļĄ Setup Package āļ—ี่āļˆāļģāđ€āļ›็āļ™āļ•āļēāļĄāļ„āļģāļŠั่āļ‡āļ”ัāļ‡āļ•่āļ­āđ„āļ›āļ™ี้

$ npm install -d : āļ„āļģāļŠั่āļ‡āļŠāļģāļŦāļĢัāļšāļĨāļ‡ Package



$ npm update -d : āļ„āļģāļŠั่āļ‡āđ€āļžื่āļ­ Update Package
$ npm -v : āļ„āļģāļŠั่āļ‡āđ€āļžื่āļ­āļ•āļĢāļ§āļˆāļŠāļ­āļšāđ€āļ§āļ­āļĢ์āļŠั่āļ™āļ‚āļ­āļ‡ npm
$ npm install gulp -g : āļ„āļģāļŠั่āļ‡āđ€āļžื่āļ­āļĨāļ‡ gulp Package



$ npm install typescript-node -g : āļ„āļģāļŠั่āļ‡āđ€āļžื่āļ­āļĨāļ‡ Typescript Package



āļ‚ั้āļ™āļ•āļ­āļ™āļāļēāļĢ Clone Project

1. āđ€āļĢāļēāļ•้āļ­āļ‡āļāļēāļĢ Clone āđ‚āļ›āļĢāđ€āļˆāļ„āļˆāļēāļ github āļĄāļēāđ„āļ§้āļ—ี่āđ€āļ„āļĢื่āļ­āļ‡āļ‚āļ­āļ‡āđ€āļĢāļē
$ git clone https://github.com/start-angular/SB-Admin-BS4-Angular-2.git

2. āļ•āļĢāļ§āļˆāļŠāļ­āļš npm āđ€āļžื่āļ­āļĨāļ‡ Type Script
npm install -g ts-node


āđ‚āļ”āļĒāđ€āļĄื่āļ­ Clone āļĨāļ‡āļĄāļēāļ—ี่āđ€āļ„āļĢื่āļ­āļ‡āļ•āļēāļĄ Path āļ—ี่āļĢāļ°āļšุāđāļĨ้āļ§ āļ็āļˆāļ°āļĄี Folder āļ‚āļ­āļ‡ Project āļ›āļĢāļēāļāļāļ­āļ­āļāļĄāļē āļ”ัāļ‡āļĢูāļ›


3. āđ€āļ‚ีāļĒāļ™ command prompt āđ€āļžื่āļ­ Run āļ„āļģāļŠั่āļ‡ $ cd `project-directory` āđ€āļžื่āļ­ Setup Project āļ•āļēāļĄ Folder āļ—ี่āđ„āļ”้ Clone āļˆāļēāļ github āļĨāļ‡āļĄāļē


āļŦāļĨัāļ‡āļˆāļēāļāļ™ั้āļ™ Git Bash āļˆāļ°āļŠั่āļ‡ Run Command āļ”้āļ§āļĒāļ„āļģāļŠั่āļ‡ $ npm install āđ€āļžื่āļ­āļĨāļ‡ Web Project


āđ€āļĄื่āļ­āļĨāļ‡ Clone Project āđ€āļŠāļĢ็āļˆāđāļĨ้āļ§ āđ€āļĢāļēāļˆāļ°āļŠั่āļ‡ Run Web Project āļ”้āļ§āļĒāļ„āļģāļŠั่āļ‡ $ npm start


āļŦāļĨัāļ‡āļˆāļēāļāļ™ั้āļ™ Server āļ็āļˆāļ°āļŠั่āļ‡ Start Server āļ‚ึ้āļ™āļĄāļē āļœ่āļēāļ™ Localhost āļ•āļēāļĄāļ—ี่āđ„āļ”้ Configuration āđ„āļ§้


Project āļ–ูāļ Start āļ‚ึ้āļ™āļĄāļēāđ€āļĢีāļĒāļšāļĢ้āļ­āļĒ....



References : 
top.sk Web Developer

I can design web applications by using Java Server Faces (JSF), Primefaces, EJB3, SQL, DB2 (IBM) and designing report (Word, Excel and PDF) by using XML Script and Crystal Clear Report for the organization that can be easily and no problem for used and they can use the Web to manage the customer's organization effectively. I want to learn a new culture, technology and colleagues involved in the IT profession.