gulp는 JavaScript를 사용하여 작업 자동화를 위한 도구로, 다양한 태스크(작업)를 정의하고 실행할 수 있습니다. 예를 들어, 파일 압축, 이미지 최적화, 코드 변환 등을 자동으로 처리할 수 있습니다. npm install gulp --globalyarn add gulp -g #호환성 에러있음pnpm add gulp -g #호환성 에러있음npm install yo --globalnpm install @microsoft/generator-sharepoint --globalyarn add yo -g #호환성 에러있음yarn add @microsoft/generator-sharepoint -g #호환성 에러있음 # install certigulp trust-dev-cert# rungulp s..
뒤적거리다가 node.js보다 bun이 빠르다고 하던 글은 더러 봤었다.bun ver1.0이 나왔다길래 설치를 해볼까 싶어서 따라해 봅니다. https://bun.sh/ ** windows에서는 지원안됨 첫 화면을 따라하면서 부터 에러, 일단 unzip부터 설치한다.(내 wsl이 꼬였는지 에러나서 wsl부터 다시 설치 했음)sudo apt-get install unzip 간단히 성공.Quick Start에 나온대로 따라해 봅니다. 기대하고 bun run index.ts 를 실행짠! 뭐야.. 딱 hello via Bun! 이게 다네.. react sample을 한번 실행 봅시다.다른 글을 보니 vite+bun 실행하길래 요즘에 vite가 또 빠르다 해서 (stackblitz.com에서 ..
wsl --set-default-version 2체크인지 먼저 확인, 안되면wsl --update를 실행해서 wsl module update부터 설치가능한 wsl list 확인wsl -l -o # 설치wsl --install -d Ubuntu-22.04 설치 중 아래 에러 발생시 관련글 참고Error: 0x800701bc WSLhttps://thekkom.tistory.com/204 설치된 항목에서 특정이름의 Distribution Name >을 삭제할 때wsl --unregister Ubuntuwsl --unregister Ubuntu-22.04 https://woshub.com/move-wsl-another-drive-windows/ Moving WSL to Another Drive ..
Remove-Item -Path D:\repo\files\*.* -Recurse Remove-Item -Path D:\repo\files -Recurse #files folder삭제 Remove Files in Folder and SubFolders Remove-Item -Path D:\repo\files\*.* -Recurse # Delete all files from the folder D:\repo\files and it's subfolders Remove-Item -Path D:\repo\files\ -Recurse -Include *.* Get-ChildItem -Path D:\repo\files\ -File -Recurse | Remove-Item Delete a file -Path Speci..
dotnet new console dotnet build --output ./build_output dotnet ./build_output/my_app.dll dotnet build -c Release dotnet build -p:Version=1.2.3.4 # single file exe with all dependancies dotnet publish -c Release -r win-x64 --self-contained true /p:publishsinglefile=true # framework-dependent executable dotnet publish -c Release dotnet publish -c Release -r --self-contained false # self-contained ..