5 131
Suscriptores
+1024 horas
+237 días
+10930 días
Archivo de publicaciones
We are looking for a node.js developer to join our team will be working with exiting technologies like AWS, Crypto and so on.
Great and flexible working enviroment, as long you have the willing to learn and the initiative.
Only developers from America or Europe
Posted On: December 07, 2021 17:39 UTC
Category: Full Stack Development
Skills:Node.js, Vue.js, React, API
Country: Uruguay
click to apply
via All jobs | upwork.com
(We know people are busy this time of year (Christmas and New Year celebrations), so this project will hire the second (2nd) week of January, and we aim to start the third (3rd) week of January; we can be flexible to an extent.)
We are seeking an experienced full-stack website developer to build a GoLang or PHP based website. This is a 1-2 month project. You will be the project lead for the website, and work closely with a two person team of developers for Telegram. You must be experienced and comfortable working with a startup budget. The budget is fixed with very little flexibility. However, we are seeking to develop a long-term working relationship with whomever we hire. You will continue to work on the website as we grow and expand.
GENERAL REQUIREMENTS:
- No WordPress
- Understand the Telegram app
- Sign an NDA, and Work for Hire Agreement.
SKILLS (PRIORITY LEVEL):
- Expertly understand GoLang or PHP (Laravel) (CRITICAL)
- Custom API Development (CRITICAL)
- Relational Database building and management (CRITICAL)
- Stripe payment processing (HIGH)
- Understanding of UX and UI Design (MEDIUM)
BRIEF:
- This website will rank, and allow for the discovery of Telegram's communities by the end user.
WHAT YOU PROVIDE:
- A fully custom GoLang or PHP website with a distinct, and professional visual look.
- The website will have approximately four (4) well developed main pages.
(in addition)
- It will have an admin dashboard for sys_admins and pro users.
- An advertisement purchasing system, and a custom API to display those advertisements in-site.
- It needs a subscription package page, and a payment processing system.
- It also needs to be able to store customer payment methods.
- It needs search functionality, by typing in a search bar/box.
- Login and registration system for basic, pro, and admin user account creation and management.
- Vote casting system.
- Responsive website for both desktop and, most importantly, mobile!
WHAT WE PROVIDE:
- Completed, and rough design mock-ups with wire-frames will be provided to the you by us.
- Open line of communication
- Professional practices
- Prompt payment
- Long-term opportunity
Budget: $4,000
Posted On: December 06, 2021 02:16 UTC
Category: Full Stack Development
Skills:API, API Integration, Database Design, Golang, Database Architecture, UX/UI, Responsive Design, Website Optimization, React, Vue.js, PHP, MySQL, Web Design, Telegram API, Custom PHP
Country: United States
click to apply
via All jobs | upwork.com
Just need someone to do the front end on a few of our projects. Our css framework is Uikit.
Hourly Range: $15.00-$30.00
Posted On: December 09, 2021 15:27 UTC
Category: Front-End Development
Skills:React
Country: Canada
click to apply
via All jobs | upwork.com
I have a sketch design for a new version of my personal blog site crunchingpixels.com. The current version of the site is built on WordPress and this version will be JAMstack. As seen in the attached recording of the preview you can get a feel of how it should look and work.
Preview Prototype
Desktop: https://ift.tt/31CDs2m
Mobile: https://ift.tt/31CDtDs
Source file is in Sketch is provided but here’s a quick look:
https://ift.tt/3lNwApq
I have a private github repo for which I have begun migrating existing content to sanity.io. Access will be provided to winning bid.
Technical expectations:
- I’ve migrated most content to Sanity.io in which you will need to connect this app to and possibly adjust settings in Sanity.io accordingly.
- I’d like this site to be developed in the latest versions of React & TypeScript. With that said you can use tools such as Gatsby if it makes sense. I believe both Sanity.io & Gatsby work off of Graphql
- Site should be responsive with a mobile first approach. Desktop, Tablet & Mobile designs will be provided for breakpoints.
- Site should be SEO friendly
- Styling should be done as styled components or equivalent. No SASS or CSS files please
- Contact form should be functional
Budget: $1,000
Posted On: December 09, 2021 15:24 UTC
Category: Front-End Development
Skills:React, TypeScript, Gatsby.js, JavaScript, CMS Development
Country: United States
click to apply
via All jobs | upwork.com
I need someone to build an API key management app. The app will have a React-based Front End (I have Metronic theme, wireframes and mocked up pages). The back-end will be Spring Boot REST microservice/ Gradle / PostgreSQL.
The app is called Console and it allows users to login and manage (create, revoke, etc.) their API keys. The app also lets the superadmin (me) go in and manage everyone's keys (i.e. view, revoke)
The key generation process will need to follow an approach used by Coinbase like here: (link removed)
So here is the process:
1. A brand new user comes to a static landing page and requests an account by submitting their email address in a form (The form will have 4-5 other fields like name, company name etc.) This request is stored by Console. In config file, if "autoApprove" is false then the user is told they will hear back from me shortly.
2. If autoApprove is false - A superadmin (me) goes into Console app and approves or denies that request. if autoApprove is true, then the request is automatically approved and we move to next step
3. Once approved, the user is notified via a SendGrid email containing a unique URL. The URL is valid only for 24 hours. If the user clicks URL within 24 hours it will take them to a registration page specific to them and marks in the db that their email address has been confirmed. If it is after 24 hours, a new link is emailed to the email address.
4. On the registration page they enter account password (with confirm password) and submit. The password is stored in DB. The password is stored as + 2 salts is hashed. They are then redirected to the login page, where they login.
5. If successful they are taken to Console's Dashboard page where they can generate an API key. This is done by accepting from the user a passphrase (also stored w/ 2 salts / pepper hash) and giving them an API key and secret in a dialog box reminding them to store it safely and that it cannot be provided again. The API key is stored on backend but the secret is not.
6. When an API is called, it will have 4 headers. The backend code to check and test these headers must work for 2-3 dummy API endpoints you create. The 4 headers are:
instamint_access_key, which is the api key
instamint_access_sign - base64-encoded signature (See Coinbase link above)
instamint_access_timestamp - a timestamp the client is making the request in Unix Epoch in UTC
instamint_access_passphrase - the passphrase the user selected
The API call will execute only if the timestamp is 15 seconds before or 15 seconds after the current time
7. If an API key is shown anywhere on screen it, a reference portion is shown with the rest masked with asterisks with an eye icon to enable its visibility / reveal it if clicked
8. If a user revokes an API key, that API, passphrase, secret is no longer valid
9. A user can have more than one API key.
10. Every time a user creates a new API key, a new passphrase is requested, and a new key and secret are provided
11. A superadmin can see, search for all users and keys and revoke a key or the entire user. Revoking a user revokes all keys. Once keys are revoked, they cannot be used again (it is final)
12. For the login into Console I would like to integrate 2FA, by use Google Authenticator( See here: (link removed))
13. Superadmin credential are loaded from environment variables on Boot startup (i.e. bootRun)
The secret should be large and complex. For example, here's a secret:
lmfsOr4S/UeIi55ihcktOQ2Wzh5WIFFj7S1/aqkGa/eiqt18wl3Sm2h/ehsILU03K5YDgNwMF2uaBumrcCbKqQ==
Budget: $425
Posted On: December 09, 2021 15:24 UTC
Category: Full Stack Development
Skills:React, Java
Country: United States
click to apply
via All jobs | upwork.com
I have an application that includes quiz questions. There is a progress bar showing how far through the quiz a user has reached.
When a user answers a question correctly, I want to trigger an animation located on the question's box in the progress bar (see file for a visual and the component hierarchy).
This should involve two main tasks:
1. Create a functional animation component that can be used with a useEffect hook by the course component on the event of a successful submission.
This animation can be converted from the normal JS one here for use in React: https://ift.tt/3oFXKke
2. Create a callback function from the question component to the course component that will let the course component know the location of the question component in order to render the animation correctly
I am open to other implementations if you know a better way of doing it, and I have a lot more React work like this if I like the results.
Required Skills:
Must be fluent in written English
Tasks will include:
Create functional React animation hook
IMPORTANT: To prove you’ve read this assignment, please write I READ YOUR REQUIREMENTS in the first line of your bid. I will eliminate all bids that do not start with this phrase since many people do not read requirements.
Budget: $50
Posted On: December 09, 2021 15:23 UTC
Category: Front-End Development
Skills:React, Animation, JavaScript, CSS, HTML
Country: United States
click to apply
via All jobs | upwork.com
Looking for an experienced developer for a 3-6 month project building a reactive highly SEO friendly web application (our API and databases are already built and service our mobile applications). This contract includes potential multiple sub-projects and continued enhancements & support if the job is completed in good standing. Must be experienced with Javascript, React, Javascript based SEO, bootstrap. We are creating a rich web application based on our current Mobile Application.
Open to discussion around differenct technology frameworks that support our end-goal of achieving a fast clean SEO friendly web application.
Required Experience
-Experience creating user interfaces with React that are search engine friendly and highly indexable. Our primary content is user generated content akin to a micro-blog.
-UI, UX, interactivity design experience a huge plus
-Graphics design experience a plus but not required for this project
-Experience in making architectural recommendations (wireframes/hifi's will be provided)
-Prior experience with continuous integration is a plus
Hourly Range: $25.00-$45.00
Posted On: December 09, 2021 15:22 UTC
Category: Front-End Development
Skills:Google Analytics, Vue.js, Azure DevOps, React, JavaScript, Web Application, CSS, HTML, SEO, Web Programming
Country: United States
click to apply
via All jobs | upwork.com
Looking for qualified iOS (Swift), Android (Java) and React Native developers to work with us on a long term, full time basis.
Work is a mix of feature enhancements for existing projects as well as new developments.
Please include previous work experience and start date availability.
Hourly Range: $8.00-$14.00
Posted On: December 09, 2021 13:31 UTC
Category: Mobile App Development
Skills:Phone, Native App Development, Android, iOS, Swift, Java, iOS Development, Mobile App Development, React Native, Android App Development, User Authentication
Country: United States
click to apply
via All jobs | upwork.com
Looking for a senior full stack developer who is specialized in react, react native, node and typescript.
PHP and Python experience is plus, but not required.
Typescript and React Native experience is must.
Please include your resume in your cover letter.
Thank you
Hourly Range: $13.00-$25.00
Posted On: December 09, 2021 13:30 UTC
Category: Full Stack Development
Skills:GraphQL, React, Node.js, TypeScript, JavaScript, API, Redux, React Native, Android, iOS
Country: United States
click to apply
via All jobs | upwork.com
Hello There,
This is full time position for long term 40 hours /week.
We are looking for someone who can work with Angular js , laravel and react.
Rest details will be shared once we see some relevant candidate.
Hourly Range: $10.00-$15.00
Posted On: December 09, 2021 13:27 UTC
Category: Full Stack Development
Skills:JavaScript, React, AngularJS, Laravel, Web Application
Country: India
click to apply
via All jobs | upwork.com
We need a react native developer for full time or 30 hours aweek for an online food delivery app. Details for the project will be shared after interview with our CTO.
Posted On: December 09, 2021 13:27 UTC
Category: Mobile App Development
Skills:React Native, Android App Development, iOS Development, JavaScript, Java, Swift, Mobile App Development, Node.js
Country: Turkey
click to apply
via All jobs | upwork.com
Ищем Frontend разработчика с уровнем middle+ и senior
Задача сверстать дизайн интерфейса сайта и личного кабинета пользователя разработанного в figma
- Обязательно наличие реализованных работ
- Отчетность о ходе работ раз в два дня
Budget: $545
Posted On: December 09, 2021 13:27 UTC
Category: Front-End Development
Skills:Responsive Design, Website, Web Application, CSS, HTML, Sass, SCSS, TypeScript, Git, React, AngularJS, HTML5, CSS 3, JavaScript, Animation, jQuery
Country: Russia
click to apply
via All jobs | upwork.com
I have a large prototype for a real estate application that has some complex interactions. The project is 90% complete but there are some performance issues and some clean-up that needs to be done before this can be presented.
I'm looking for someone who is an expert in Figma to help assess the best way to get the prototype to feel natural. This could be a combination of addressing performance issues, adjusting animation timings, or interaction types (hover vs mouse enter etc). Some of the issues that need to be addressed:
*generally slow, this is a large file. Is there a way to break this up?
*hover effects are delayed, especially in the floor plan view edit mode
*images are blurred when loading, this is distracting for hover effects
*menu navbar interactive component dropdowns not consistently interactive across prototype pages (reset overrides? another issue?)
*hover effects sometimes seem to get triggered in a delayed way and then stack up, ie a bunch of hover effects will happen all at once after a delay where nothing happened
*GIF animations not playing consistently in the interior walkthrough (too large, an issue with the GIF file?)
Link to Figma Prototype is below:
https://ift.tt/3lOUm4J
Hourly Range: $20.00-$47.00
Posted On: December 09, 2021 13:22 UTC
Category: Prototyping
Skills:Web Design, Figma, Prototype
Country: United States
click to apply
via All jobs | upwork.com
Looking for a developer to take on an existing fully functional piece of code and update it and make cosmetic changes. May involve some minor changes to code. Note this website has a linked Android and iOS app.
I can share all details.
Existing code is a marketplace type up where a customer can make a booking from a listing. It will largely remain the same type of application. e.g. a customer booking a service with a service provider. Website is www.suburbiya.com
Tech stack:
Web - Codeigniter
Andriod app - JAVA - using native tools
iOS app - React-native
Then finally host it.
Budget: $200
Posted On: December 09, 2021 13:22 UTC
Category: Full Stack Development
Skills:PHP, Web Design, Web Programming
Country: Australia
click to apply
via All jobs | upwork.com
Need a React Native developer to debug our live website.
We have a Website which has started malfunctioning. Need to debug what went wrong.
The same website is working on mobile platform but has become unresponsive for Desktop browsers.
It most likely due to some package update or changes in the react libraries.
No new features or functionality has to be implemented. Just make sure the website is working same on the desktop as it is working on the mobile browsers.
Budget: $30
Posted On: December 09, 2021 12:34 UTC
Category: Front-End Development
Skills:React Native, React, JavaScript
Country: India
click to apply
via All jobs | upwork.com
Our goal is to host all our video content in Google Cloud such that it can be played in our React client with Adaptive Bitrate Streaming.
Initial task involves scripting FFMPEG to convert a MOV video into streams of varying resolution, with both HLS and DASH manifests such that it will play on the react-player.
Posted On: December 09, 2021 12:34 UTC
Category: Full Stack Development
Skills:Java, Video Streaming, Spring Framework, FFmpeg, Real Time Stream Processing, Apache Maven, Hibernate
Country: Germany
click to apply
via All jobs | upwork.com
We are looking for an enthusiastic reactJs and nodeJs developer.
I need an updated API for my existing application.
we will provide you with the designs and business logic.
Budget: $50
Posted On: December 09, 2021 12:33 UTC
Category: Full Stack Development
Skills:Node.js, JavaScript, MongoDB, API Development, API, RESTful API, ExpressJS
Country: Egypt
click to apply
via All jobs | upwork.com
We want a React developer to convert sketch or Figma design into React frontend Code
Need to start right away
We want a responsive and responsible developer
Thanks
Hourly Range: $10.00-$20.00
Posted On: December 09, 2021 12:32 UTC
Category: Front-End Development
Skills:React
Country: Germany
click to apply
via All jobs | upwork.com
Requirements skills:
- SOLID adept
- Good understanding of TypeScript
- Experience 2 years with ReactJs, Redux for 1+ year.
- Сross-browser layout hard skills must (CSS, less or saas)
- Confident use of git
- Good knowledge with CSS framework (preferable tailwind rather than bootstrap)
- Must follow React architecture (Container-Components)
What is needed to do:
To continue developing not very big Landing page + subpages for a funny crypto project. There are some already done components but without any styles. So you need to customize components according to design from Figma or if necessary change components to most performance one. The main goal – the project should be simple for run (less and light dependencies) and easy to customize.
Tests (Jest) a necessary only for critical components.
Requirements to developer:
We are looking Middle and Senior developers witch can work in working hours between UTC+1 and UTC+3. (Moscow or Berlin time)
Please reply with your prior experience description.
If you are interested in this project then I will send you a small part of task (payed after success hiring ) and project archive. All work should be submitted as git-patches for existing code. Some examples of goal components in screenshots below.
We only consider independent freelancers, so we do not answer to agencies.
All tasks are well prepared and could be also estimated as fix price.
Hourly Range: $15.00-$30.00
Posted On: December 09, 2021 12:32 UTC
Category: Front-End Development
Skills:TypeScript, SaaS, HTML5, JavaScript, CSS, Redux, React, Git, Web Application
Country: Germany
click to apply
via All jobs | upwork.com
Iam looking for multistore listing app with e-commercw features
Posted On: December 09, 2021 12:31 UTC
Category: Mobile App Development
Skills:iOS Development, React Native, Swift, Java, PHP, WordPress e-Commerce, Android App Development, React, API Integration, Node.js, JavaScript
Country: India
click to apply
via All jobs | upwork.com
