cron time is not working

I am using cron in NodeJS. When I use '* * * * * *', it works for every second. What I want is to run script at 01 AM Daily so I write '00 00 01 * * *' but this is not working.

What is wrong with current time string. What should I do ?