Skip to content

academey/spam_filter

Repository files navigation

Spam Filter

This project is for filtering content with spam url using ReactJS client-side-rendering with AWS Lambda. If that url is redirected, api will track that redirecting.

The Demo is now available!

isSpam API URL

isSpam API PARAMS

  • content: string;
  • spamLinkDomains: string[];
  • redirectionDepth: number;

isSpam Return Value

  • isSpam: boolean;

Project spec

  • TypeScript - Basic language
  • ReactJS - Frontend library
  • Redux - App state manager
  • Serverless - managing AWS Lambda, API
  • Other dependencies - material-ui, toastr, react-table ... etc

Gateway, and the others within cloud-formation

Before Project Start

  • This isn't free to start. Because it uses AWS's several services(Lambda, API Gateway, S3, CloudFront, CloudFormation, (Route53))*
  1. Set AWS Credential You should set AWS IAM Role and account setting. visit below guide and precede AWS settings before run deploying script Serverless AWS account setting guide

  2. Make S3 Bucket to upload your bundled S3

Make S3 Bucket
(If you can connect this with CDN like the Cloudfront, the script loading speed will be better. But in this case you should change some code in deploy logic and normal logic too.)

Set S3 Bucket information in <root_directory>/scripts/builds/config.ts

How to install

git clone https://github.com/academey/spam_filter
cd react-universal-in-serverless
npm install

How to use

Running dev server

npm run dev

Build production script

at staging server

npm run deploy:stage

at production server

npm run deploy:prod

Contributing

If you want to contribute something, just make Pull Request or Issue for us. we will appreciate all of your contributions. thanks.

Authors

Logs in Terminal (please read serverless official docs)

npm i -g serverless
serverless logs -f [function name] -s [stage name]
ex) serverless logs -f ssr -s stage

If you want to watch logs in watch mode(continuously), just run with -t option

serverless logs -f [function name] -s [stage name] -t

deploy process

  1. Make and Apply new git tag for SCM and destination path.
  2. Make bundled JS files for server-side and browser-side.
  3. Upload bundled JS files to S3 and Remove browser side bundled JS.
  4. Copy package.json that only for serverless to dist folder.
  5. Install all packages in dist folder and zip them with bundled JS.
  6. Deploy Lambda and relevant packages by using serverless

Todos

  • Adding TEST
  • Minimizing node_modules size