Skip to content

Instantly share code, notes, and snippets.

View basyusuf's full-sized avatar
Focusing

Yusuf Baş basyusuf

Focusing
  • Turkey
View GitHub Profile
@basyusuf
basyusuf / puppeteer_serverless.yml
Created December 5, 2020 17:40
puppeteer_serverless.yml
service: screenshotproject
frameworkVersion: '2'
custom:
bucket: screenshot-buckets-test # Sizin oluşturduğunuz bucket'ın ismi
provider:
name: aws
runtime: nodejs12.x
region: eu-central-1
iamRoleStatements:
- Effect: Allow
@basyusuf
basyusuf / jsdocExampleOne.js
Created November 25, 2020 20:11
JSDoc example
/** @function kullaniciOlustur
* @param {string} isim - Kullanıcı ismi
* @param {string} soyisim - Kullanıcı soyismi
* @param {number} yas - Kullanıcı yaşı
* @return Kullanıcı oluşturuldu
* @see https://github.com/basyusuf
*/
const kullaniciOlustur = (isim, soyisim, yas) => {
console.log(isim);
console.log(soyisim);
@basyusuf
basyusuf / jsdoc.config.json
Created November 25, 2020 19:51
JSDoc Configuration
{
"source":{
"include":["src"],
"includePattern":".js$",
"excludePattern":"(node_modules/|docs)"
},
"plugins":["plugins/markdown"],
"templates":{
"cleverLinks":true,
"monospaceLinks":true